ProcSetObj is a PDF procSet object.
| 7 | |
| 8 | // ProcSetObj is a PDF procSet object. |
| 9 | type ProcSetObj struct { |
| 10 | //Font |
| 11 | Relates RelateFonts |
| 12 | RelateColorSpaces RelateColorSpaces |
| 13 | RelateXobjs RelateXobjects |
| 14 | ExtGStates []ExtGS |
| 15 | ImportedTemplateIds map[string]int |
| 16 | getRoot func() *GoPdf |
| 17 | } |
| 18 | |
| 19 | func (pr *ProcSetObj) init(funcGetRoot func() *GoPdf) { |
| 20 | pr.getRoot = funcGetRoot |
nothing calls this directly
no outgoing calls
no test coverage detected