ImageObj image object
| 17 | |
| 18 | // ImageObj image object |
| 19 | type ImageObj struct { |
| 20 | //imagepath string |
| 21 | IsMask bool |
| 22 | SplittedMask bool |
| 23 | rawImgReader *bytes.Reader |
| 24 | imginfo imgInfo |
| 25 | pdfProtection *PDFProtection |
| 26 | //getRoot func() *GoPdf |
| 27 | } |
| 28 | |
| 29 | func (i *ImageObj) init(funcGetRoot func() *GoPdf) { |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected