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

     1  package gopdf
     2  
     3  type imgInfo struct {
     4  	w, h int
     5  	//src              string
     6  	formatName       string
     7  	colspace         string
     8  	bitsPerComponent string
     9  	filter           string
    10  	decodeParms      string
    11  	trns             []byte
    12  	smask            []byte
    13  	smarkObjID       int
    14  	pal              []byte
    15  	deviceRGBObjID   int
    16  	data             []byte
    17  }