github.com/signintech/pdft@v0.5.0/minigopdf/i_cache_contneter.go (about)

     1  package gopdf
     2  
     3  import "bytes"
     4  
     5  type iCacheContent interface {
     6  	toStream(protection *PDFProtection) (*bytes.Buffer, error)
     7  }