Documentation ¶
Overview ¶
Package pdfcpu is a simple PDF processing library written in Go supporting encryption. It provides an API and a command line interface. Supported are all versions up to PDF 1.7 (ISO-32000).
The available commands are:
validate validate PDF against PDF 32000-1:2008 (PDF 1.7) optimize optimize PDF by getting rid of redundant page resources split split multi-page PDF into several single-page PDFs merge concatenate 2 or more PDFs extract extract images, fonts, content or pages trim create trimmed version attach list, add, remove, extract embedded file attachments perm list, add user access permissions encrypt set password protection decrypt remove password protection changeupw change user password changeopw change owner password version print version
Index ¶
- Constants
- Variables
- func AppendStatsFile(ctx *PDFContext) error
- func AttachAdd(xRefTable *XRefTable, files StringSet) (ok bool, err error)
- func AttachExtract(ctx *PDFContext, files StringSet) (err error)
- func AttachList(xRefTable *XRefTable) (list []string, err error)
- func AttachRemove(xRefTable *XRefTable, files StringSet) (ok bool, err error)
- func CreateDemoPDF(xRefTable *XRefTable, dirName, fileName string) error
- func Date(s string) bool
- func DecodeUTF16String(s string) (string, error)
- func Escape(s string) (*string, error)
- func ExtractContentData(ctx *PDFContext, objNr int) (data []byte, err error)
- func HexLiteralToString(hexString string) (string, error)
- func IsStringUTF16BE(s string) bool
- func IsUTF16BE(b []byte) (ok bool, err error)
- func MergeXRefTables(ctxSource, ctxDest *PDFContext) (err error)
- func OptimizeXRefTable(ctx *PDFContext) error
- func Permissions(ctx *PDFContext) (list []string)
- func StringLiteralToString(s string) (string, error)
- func Unescape(s string) ([]byte, error)
- func ValidateXRefTable(xRefTable *XRefTable) error
- func VersionString(version PDFVersion) string
- func WritePDFFile(ctx *PDFContext) error
- func WritePNGFile(ctx *PDFContext, fileName string, objNr int, io *ImageObject) error
- type ByteSize
- type CommandMode
- type Configuration
- type Enc
- type FontObject
- type ImageObject
- type IntSet
- type Node
- func (n *Node) Add(xRefTable *XRefTable, k string, v PDFObject) error
- func (n *Node) AddToLeaf(k string, v PDFObject)
- func (n Node) KeyList() ([]string, error)
- func (n Node) Process(xRefTable *XRefTable, handler func(*XRefTable, string, PDFObject) error) error
- func (n *Node) Remove(xRefTable *XRefTable, k string) (empty, ok bool, err error)
- func (n Node) String() string
- func (n Node) Value(k string) (PDFObject, bool)
- type OptimizationContext
- func (oc *OptimizationContext) DuplicateFontObjectsString() (int, string)
- func (oc *OptimizationContext) DuplicateImageObjectsString() (int, string)
- func (oc *OptimizationContext) DuplicateInfoObjectsString() (int, string)
- func (oc *OptimizationContext) IsDuplicateFontObject(i int) bool
- func (oc *OptimizationContext) IsDuplicateImageObject(i int) bool
- func (oc *OptimizationContext) IsDuplicateInfoObject(i int) bool
- func (oc *OptimizationContext) NonReferencedObjsString() (int, string)
- type PDFArray
- type PDFBoolean
- type PDFContext
- type PDFDict
- func (d PDFDict) BooleanEntry(key string) *bool
- func (d *PDFDict) Delete(key string) (value PDFObject)
- func (d *PDFDict) Entry(dictName, key string, required bool) (PDFObject, error)
- func (d PDFDict) Find(key string) (value PDFObject, found bool)
- func (d PDFDict) First() *int
- func (d PDFDict) Index() *PDFArray
- func (d PDFDict) IndirectRefEntry(key string) *PDFIndirectRef
- func (d *PDFDict) Insert(key string, value PDFObject) (ok bool)
- func (d *PDFDict) InsertFloat(key string, value float32)
- func (d *PDFDict) InsertInt(key string, value int)
- func (d *PDFDict) InsertName(key, value string)
- func (d *PDFDict) InsertString(key, value string)
- func (d PDFDict) Int64Entry(key string) *int64
- func (d PDFDict) IntEntry(key string) *int
- func (d PDFDict) IsLinearizationParmDict() bool
- func (d PDFDict) IsObjStm() bool
- func (d *PDFDict) Len() int
- func (d PDFDict) Length() (*int64, *int)
- func (d PDFDict) N() *int
- func (d PDFDict) NameEntry(key string) *string
- func (d PDFDict) PDFArrayEntry(key string) *PDFArray
- func (d PDFDict) PDFDictEntry(key string) *PDFDict
- func (d PDFDict) PDFHexLiteralEntry(key string) *PDFHexLiteral
- func (d PDFDict) PDFNameEntry(key string) *PDFName
- func (d PDFDict) PDFStreamDictEntry(key string) *PDFStreamDict
- func (d PDFDict) PDFString() string
- func (d PDFDict) PDFStringLiteralEntry(key string) *PDFStringLiteral
- func (d PDFDict) Prev() *int64
- func (d PDFDict) Size() *int
- func (d PDFDict) String() string
- func (d PDFDict) StringEntry(key string) *string
- func (d PDFDict) StringEntryBytes(key string) ([]byte, error)
- func (d PDFDict) Subtype() *string
- func (d PDFDict) Type() *string
- func (d *PDFDict) Update(key string, value PDFObject)
- func (d PDFDict) W() *PDFArray
- type PDFFilter
- type PDFFloat
- type PDFHexLiteral
- type PDFIndirectRef
- type PDFInteger
- type PDFName
- type PDFObject
- type PDFObjectStreamDict
- type PDFStats
- type PDFStreamDict
- type PDFStringLiteral
- type PDFVersion
- type PDFXRefStreamDict
- type ReadContext
- type StringSet
- type WriteContext
- type XRefTable
- func (xRefTable *XRefTable) BindNameTrees() error
- func (xRefTable *XRefTable) Catalog() (*PDFDict, error)
- func (xRefTable *XRefTable) CatalogHasPieceInfo() (bool, error)
- func (xRefTable *XRefTable) DeleteObject(objectNumber int) error
- func (xRefTable *XRefTable) DeleteObjectGraph(obj PDFObject) error
- func (xRefTable *XRefTable) Dereference(obj PDFObject) (PDFObject, error)
- func (xRefTable *XRefTable) DereferenceArray(obj PDFObject) (*PDFArray, error)
- func (xRefTable *XRefTable) DereferenceDict(obj PDFObject) (*PDFDict, error)
- func (xRefTable *XRefTable) DereferenceInteger(obj PDFObject) (*PDFInteger, error)
- func (xRefTable *XRefTable) DereferenceName(obj PDFObject, sinceVersion PDFVersion, validate func(string) bool) (n PDFName, err error)
- func (xRefTable *XRefTable) DereferenceStreamDict(obj PDFObject) (*PDFStreamDict, error)
- func (xRefTable *XRefTable) DereferenceStringLiteral(obj PDFObject, sinceVersion PDFVersion, validate func(string) bool) (s PDFStringLiteral, err error)
- func (xRefTable *XRefTable) DereferenceStringOrHexLiteral(obj PDFObject, sinceVersion PDFVersion, validate func(string) bool) (o PDFObject, err error)
- func (xRefTable *XRefTable) EncryptDict() (*PDFDict, error)
- func (xRefTable *XRefTable) EnsureCollection() error
- func (xRefTable *XRefTable) EnsureValidFreeList() error
- func (xRefTable *XRefTable) Exists(objNumber int) bool
- func (xRefTable *XRefTable) Find(objNumber int) (*XRefTableEntry, bool)
- func (xRefTable *XRefTable) FindObject(objNumber int) (PDFObject, error)
- func (xRefTable *XRefTable) FindTableEntry(objNumber int, generationNumber int) (*XRefTableEntry, bool)
- func (xRefTable *XRefTable) FindTableEntryForIndRef(indRef *PDFIndirectRef) (*XRefTableEntry, bool)
- func (xRefTable *XRefTable) FindTableEntryLight(objNumber int) (*XRefTableEntry, bool)
- func (xRefTable *XRefTable) Free(objNumber int) (*XRefTableEntry, error)
- func (xRefTable *XRefTable) IDFirstElement() (id []byte, err error)
- func (xRefTable *XRefTable) IndRefForNewObject(obj PDFObject) (*PDFIndirectRef, error)
- func (xRefTable *XRefTable) InsertAndUseRecycled(xRefTableEntry XRefTableEntry) (objNumber int, err error)
- func (xRefTable *XRefTable) InsertNew(xRefTableEntry XRefTableEntry) (objNumber int)
- func (xRefTable *XRefTable) InsertObject(obj PDFObject) (objNumber int, err error)
- func (xRefTable *XRefTable) IsLinearizationObject(i int) bool
- func (xRefTable *XRefTable) LinearizationObjsString() (int, string)
- func (xRefTable *XRefTable) LocateNameTree(nameTreeName string, ensure bool) error
- func (xRefTable *XRefTable) MissingObjects() (int, *string)
- func (xRefTable *XRefTable) NamesDict() (*PDFDict, error)
- func (xRefTable *XRefTable) NewEmbeddedFileStreamDict(filename string) (*PDFStreamDict, error)
- func (xRefTable *XRefTable) NewFileSpecDict(filename string, indRefStreamDict PDFIndirectRef) (*PDFDict, error)
- func (xRefTable *XRefTable) NewPDFStreamDict(filename string) (*PDFStreamDict, error)
- func (xRefTable *XRefTable) NewSoundStreamDict(filename string, samplingRate int, fileSpecDict *PDFDict) (*PDFStreamDict, error)
- func (xRefTable *XRefTable) NextForFree(objNumber int) (int, error)
- func (xRefTable *XRefTable) PageDict(page int) (*PDFDict, error)
- func (xRefTable *XRefTable) Pages() (*PDFIndirectRef, error)
- func (xRefTable *XRefTable) ParseRootVersion() (v *string, err error)
- func (xRefTable *XRefTable) RemoveCollection() error
- func (xRefTable *XRefTable) RemoveEmbeddedFilesNameTree() error
- func (xRefTable *XRefTable) RemoveNameTree(nameTreeName string) error
- func (xRefTable *XRefTable) UndeleteObject(objectNumber int) error
- func (xRefTable *XRefTable) ValidateVersion(element string, sinceVersion PDFVersion) error
- func (xRefTable *XRefTable) Version() PDFVersion
- func (xRefTable *XRefTable) VersionString() string
- type XRefTableEntry
Constants ¶
const ( // ValidationStrict ensures 100% compliance with the spec (PDF 32000-1:2008). ValidationStrict = 0 // ValidationRelaxed ensures PDF compliance based on frequently encountered validation errors. ValidationRelaxed = 1 // StatsFileNameDefault is the standard stats filename. StatsFileNameDefault = "stats.csv" // PermissionsAll enables all user access permission bits. PermissionsAll int16 = -1 // 0xFFFF // PermissionsNone disables all user access permissions bits. PermissionsNone int16 = -3901 // 0xF0C3 )
const ( RootVersion = iota RootExtensions RootPageLabels RootNames RootDests RootViewerPrefs RootPageLayout RootPageMode RootOutlines RootThreads RootOpenAction RootAA RootURI RootAcroForm RootMetadata RootStructTreeRoot RootMarkInfo RootLang RootSpiderInfo RootOutputIntents RootPieceInfo RootOCProperties RootPerms RootLegal RootRequirements RootCollection RootNeedsRendering )
The PDF root object fields.
const ( PageLastModified = iota PageResources PageMediaBox PageCropBox PageBleedBox PageTrimBox PageArtBox PageBoxColorInfo PageContents PageRotate PageGroup PageThumb PageB PageDur PageTrans PageAnnots PageAA PageMetadata PagePieceInfo PageStructParents PageID PagePZ PageSeparationInfo PageTabs PageTemplateInstantiated PagePresSteps PageUserUnit PageVP )
The PDF page object fields.
const ( EolLF = "\x0A" EolCR = "\x0D" EolCRLF = "\x0D\x0A" )
Supported line delimiters
const ( DeviceGrayCS = "DeviceGray" DeviceRGBCS = "DeviceRGB" DeviceCMYKCS = "DeviceCMYK" CalGrayCS = "CalGray" CalRGBCS = "CalRGB" LabCS = "Lab" ICCBasedCS = "ICCBased" IndexedCS = "Indexed" PatternCS = "Pattern" SeparationCS = "Separation" DeviceNCS = "DeviceN" )
PDF defines the following Color Spaces:
const ( // REQUIRED is used for required dict entries. REQUIRED = true // OPTIONAL is used for optional dict entries. OPTIONAL = false )
const ( // ExcludePatternCS ... ExcludePatternCS = true // IncludePatternCS ... IncludePatternCS = false )
const ( // PDFCPUVersion returns the current pdfcpu version. PDFCPUVersion = "0.1.14" // PDFCPULongVersion returns pdfcpu's signature. PDFCPULongVersion = "golang pdfcpu v" + PDFCPUVersion )
const FreeHeadGeneration = 65535
FreeHeadGeneration is the predefined generation number for the head of the free list.
const (
// ObjectStreamMaxObjects limits the number of objects within an object stream written.
ObjectStreamMaxObjects = 100
)
Variables ¶
var ( ErrUnsupportedColorSpace = errors.New("unsupported color space") ErrUnsupportedBPC = errors.New("unsupported bitsPerComponent") )
Errors to be identified.
Functions ¶
func AppendStatsFile ¶
func AppendStatsFile(ctx *PDFContext) error
AppendStatsFile appends a stats line for this xRefTable to the configured csv file name.
func AttachAdd ¶
AttachAdd embeds specified files. Existing attachments are replaced. ok returns true if at least one attachment was added.
func AttachExtract ¶
func AttachExtract(ctx *PDFContext, files StringSet) (err error)
AttachExtract exports specified embedded files. If no files specified extract all embedded files.
func AttachList ¶
AttachList returns a list of embedded files.
func AttachRemove ¶
AttachRemove deletes specified embedded files. ok returns true if at least one attachment could be removed.
func CreateDemoPDF ¶
CreateDemoPDF creates a demo PDF file for testing validation.
func DecodeUTF16String ¶
DecodeUTF16String decodes a UTF16BE string from a hex string.
func ExtractContentData ¶
func ExtractContentData(ctx *PDFContext, objNr int) (data []byte, err error)
ExtractContentData extracts page content in PDF notation for objNr.
func HexLiteralToString ¶
HexLiteralToString returns a possibly UTF16 encoded string for a hex string.
func IsStringUTF16BE ¶
IsStringUTF16BE checks a string for Big Endian byte order BOM.
func MergeXRefTables ¶
func MergeXRefTables(ctxSource, ctxDest *PDFContext) (err error)
MergeXRefTables merges PDFContext ctxSource into ctxDest by appending its page tree.
func OptimizeXRefTable ¶
func OptimizeXRefTable(ctx *PDFContext) error
OptimizeXRefTable optimizes an xRefTable by locating and getting rid of redundant embedded fonts and images.
func Permissions ¶
func Permissions(ctx *PDFContext) (list []string)
Permissions returns a list of set permissions.
func StringLiteralToString ¶
StringLiteralToString returns the best possible string rep for a string literal.
func ValidateXRefTable ¶
ValidateXRefTable validates a PDF cross reference table obeying the validation mode.
func VersionString ¶
func VersionString(version PDFVersion) string
VersionString returns a string representation for a given PDFVersion.
func WritePDFFile ¶
func WritePDFFile(ctx *PDFContext) error
WritePDFFile generates a PDF file for the cross reference table contained in PDFContext.
func WritePNGFile ¶ added in v0.1.14
func WritePNGFile(ctx *PDFContext, fileName string, objNr int, io *ImageObject) error
WritePNGFile creates a PNG file for an image object.
Types ¶
type CommandMode ¶
type CommandMode int
CommandMode specifies the operation being executed.
const ( VALIDATE CommandMode = iota OPTIMIZE SPLIT MERGE EXTRACTIMAGES EXTRACTFONTS EXTRACTPAGES EXTRACTCONTENT TRIM ADDATTACHMENTS REMOVEATTACHMENTS EXTRACTATTACHMENTS LISTATTACHMENTS ADDPERMISSIONS LISTPERMISSIONS ENCRYPT DECRYPT CHANGEUPW CHANGEOPW )
The available commands.
type Configuration ¶
type Configuration struct { // Enables PDF V1.5 compatible processing of object streams, xref streams, hybrid PDF files. Reader15 bool // Enables decoding of all streams (fontfiles, images..) for logging purposes. DecodeAllStreams bool // Validate against ISO-32000: strict or relaxed ValidationMode int // End of line char sequence for writing. Eol string // Turns on object stream generation. // A signal for compressing any new non-stream-object into an object stream. // true enforces WriteXRefStream to true. // false does not prevent xRefStream generation. WriteObjectStream bool // Switches between xRefSection (<=V1.4) and objectStream/xRefStream (>=V1.5) writing. WriteXRefStream bool // Turns on stats collection. CollectStats bool // A CSV-filename holding the statistics. StatsFileName string // Supplied user password UserPW string UserPWNew *string // Supplied owner password OwnerPW string OwnerPWNew *string // EncryptUsingAES ensures AES encryption. // true: AES encryption // false: RC4 encryption. EncryptUsingAES bool // EncryptUsing128BitKey ensures 128 bit key length. // true: use 128 bit key // false: use 40 bit key EncryptUsing128BitKey bool // Supplied user access permissions, see Table 22 UserAccessPermissions int16 // Command being executed. Mode CommandMode }
Configuration of a PDFContext.
func NewDefaultConfiguration ¶
func NewDefaultConfiguration() *Configuration
NewDefaultConfiguration returns the default pdfcpu configuration.
func (*Configuration) ValidationModeString ¶
func (c *Configuration) ValidationModeString() string
ValidationModeString returns a string rep for the validation mode in effect.
type FontObject ¶
type FontObject struct { ResourceNames []string Prefix string FontName string FontDict *PDFDict Data []byte Extension string }
FontObject represents a font used in a PDF file.
func ExtractFontData ¶
func ExtractFontData(ctx *PDFContext, objNr int) (*FontObject, error)
ExtractFontData extracts font data (the "fontfile") for objNr. Supported fontTypes: TrueType
func (*FontObject) AddResourceName ¶
func (fo *FontObject) AddResourceName(resourceName string)
AddResourceName adds a resourceName referring to this font.
func (FontObject) Embedded ¶
func (fo FontObject) Embedded() (embedded bool)
Embedded returns true if the font is embedded into this PDF file.
func (FontObject) Encoding ¶
func (fo FontObject) Encoding() string
Encoding returns the Encoding of this font.
func (FontObject) ResourceNamesString ¶
func (fo FontObject) ResourceNamesString() string
ResourceNamesString returns a string representation of all the resource names of this font.
func (FontObject) String ¶
func (fo FontObject) String() string
func (FontObject) SubType ¶
func (fo FontObject) SubType() string
SubType returns the SubType of this font.
type ImageObject ¶
type ImageObject struct { ResourceNames []string ImageDict *PDFStreamDict Extension string }
ImageObject represents an image used in a PDF file.
func ExtractImageData ¶
func ExtractImageData(ctx *PDFContext, objNr int) (*ImageObject, error)
ExtractImageData extracts image data for objNr. Supported imgTypes: DCTDecode, JPXDecode Note: This is a naive implementation that just returns encoded image bytes. Hence TODO: Implementation and usage of these filters: DCTDecode and JPXDecode.
func (*ImageObject) AddResourceName ¶
func (io *ImageObject) AddResourceName(resourceName string)
AddResourceName adds a resourceName to this imageObject's ResourceNames dict.
func (ImageObject) Data ¶
func (io ImageObject) Data() []byte
Data returns the raw data belonging to this image object.
func (ImageObject) ResourceNamesString ¶
func (io ImageObject) ResourceNamesString() string
ResourceNamesString returns a string representation of the ResourceNames for this image.
type Node ¶
type Node struct { Kids []*Node // Mirror of the name tree's Kids array. Names []entry // Mirror of the name tree's Names array. Kmin, Kmax string // Mirror of the name tree's Limit array[Kmin,Kmax]. IndRef *PDFIndirectRef // Pointer to the PDF object representing this name tree node. }
Node is an opiniated implementation of the PDF name tree. pdfcpu caches all name trees found in the PDF catalog with this data structure. The PDF spec does not impose any rules regarding a strategy for the creation of nodes. A binary tree was chosen where each leaf node has a limited number of entries (maxEntries). Once maxEntries has been reached a leaf node turns into an intermediary node with two kids, which are leaf nodes each of them holding half of the sorted entries of the original leaf node.
func (Node) Process ¶
func (n Node) Process(xRefTable *XRefTable, handler func(*XRefTable, string, PDFObject) error) error
Process traverses the nametree applying a handler to each entry (key-value pair).
type OptimizationContext ¶
type OptimizationContext struct { // Font section PageFonts []IntSet FontObjects map[int]*FontObject Fonts map[string][]int DuplicateFontObjs IntSet DuplicateFonts map[int]*PDFDict // Image section PageImages []IntSet ImageObjects map[int]*ImageObject DuplicateImageObjs IntSet DuplicateImages map[int]*PDFStreamDict DuplicateInfoObjects IntSet // Possible result of manual info dict modification. NonReferencedObjs []int // Objects that are not referenced. }
OptimizationContext represents the context for the optimiziation of a PDF file.
func (*OptimizationContext) DuplicateFontObjectsString ¶
func (oc *OptimizationContext) DuplicateFontObjectsString() (int, string)
DuplicateFontObjectsString returns a formatted string and the number of objs.
func (*OptimizationContext) DuplicateImageObjectsString ¶
func (oc *OptimizationContext) DuplicateImageObjectsString() (int, string)
DuplicateImageObjectsString returns a formatted string and the number of objs.
func (*OptimizationContext) DuplicateInfoObjectsString ¶
func (oc *OptimizationContext) DuplicateInfoObjectsString() (int, string)
DuplicateInfoObjectsString returns a formatted string and the number of objs.
func (*OptimizationContext) IsDuplicateFontObject ¶
func (oc *OptimizationContext) IsDuplicateFontObject(i int) bool
IsDuplicateFontObject returns true if object #i is a duplicate font object.
func (*OptimizationContext) IsDuplicateImageObject ¶
func (oc *OptimizationContext) IsDuplicateImageObject(i int) bool
IsDuplicateImageObject returns true if object #i is a duplicate image object.
func (*OptimizationContext) IsDuplicateInfoObject ¶
func (oc *OptimizationContext) IsDuplicateInfoObject(i int) bool
IsDuplicateInfoObject returns true if object #i is a duplicate info object.
func (*OptimizationContext) NonReferencedObjsString ¶
func (oc *OptimizationContext) NonReferencedObjsString() (int, string)
NonReferencedObjsString returns a formatted string and the number of objs.
type PDFArray ¶
type PDFArray []PDFObject
PDFArray represents a PDF array object.
func NewIntegerArray ¶
NewIntegerArray returns a PDFArray with PDFInteger entries.
func NewNameArray ¶
NewNameArray returns a PDFArray with PDFName entries.
func NewNumberArray ¶
NewNumberArray returns a PDFArray with PDFFloat entries.
func NewRectangle ¶
NewRectangle creates a rectangle array
func NewStringArray ¶
NewStringArray returns a PDFArray with PDFStringLiteral entries.
type PDFBoolean ¶
type PDFBoolean bool
PDFBoolean represents a PDF boolean object.
func (PDFBoolean) PDFString ¶
func (boolean PDFBoolean) PDFString() string
PDFString returns a string representation as found in and written to a PDF file.
func (PDFBoolean) String ¶
func (boolean PDFBoolean) String() string
func (PDFBoolean) Value ¶
func (boolean PDFBoolean) Value() bool
Value returns a bool value for this PDF object.
type PDFContext ¶
type PDFContext struct { *Configuration *XRefTable Read *ReadContext Optimize *OptimizationContext Write *WriteContext }
PDFContext represents the context for processing PDF files.
func NewPDFContext ¶
func NewPDFContext(fileName string, file *os.File, config *Configuration) (*PDFContext, error)
NewPDFContext initializes a new PDFContext.
func ReadPDFFile ¶
func ReadPDFFile(fileName string, config *Configuration) (*PDFContext, error)
ReadPDFFile reads in a PDFFile and generates a PDFContext, an in-memory representation containing a cross reference table.
func (*PDFContext) ResetWriteContext ¶
func (ctx *PDFContext) ResetWriteContext()
ResetWriteContext prepares an existing WriteContext for a new file to be written.
func (*PDFContext) String ¶
func (ctx *PDFContext) String() string
type PDFDict ¶
PDFDict represents a PDF dict object.
func (PDFDict) BooleanEntry ¶
BooleanEntry expects and returns a BooleanEntry for given key.
func (PDFDict) IndirectRefEntry ¶
func (d PDFDict) IndirectRefEntry(key string) *PDFIndirectRef
IndirectRefEntry returns an indirectRefEntry for given key for this dictionary.
func (*PDFDict) InsertFloat ¶
InsertFloat adds a new float entry to this PDFDict.
func (*PDFDict) InsertName ¶
InsertName adds a new name entry to this PDFDict.
func (*PDFDict) InsertString ¶
InsertString adds a new string entry to this PDFDict.
func (PDFDict) Int64Entry ¶
Int64Entry expects and returns a PDFInteger entry representing an int64 value for given key.
func (PDFDict) IsLinearizationParmDict ¶
IsLinearizationParmDict returns true if this dict has an int entry for key "Linearized".
func (PDFDict) Length ¶
Length returns a *int64 for entry with key "Length". Stream length may be referring to an indirect object.
func (PDFDict) PDFArrayEntry ¶
PDFArrayEntry expects and returns a PDFArray entry for given key.
func (PDFDict) PDFDictEntry ¶
PDFDictEntry expects and returns a PDFDict entry for given key.
func (PDFDict) PDFHexLiteralEntry ¶
func (d PDFDict) PDFHexLiteralEntry(key string) *PDFHexLiteral
PDFHexLiteralEntry returns a PDFHexLiteral object for given key.
func (PDFDict) PDFNameEntry ¶
PDFNameEntry returns a PDFName object for given key.
func (PDFDict) PDFStreamDictEntry ¶
func (d PDFDict) PDFStreamDictEntry(key string) *PDFStreamDict
PDFStreamDictEntry expects and returns a PDFStreamDict entry for given key. unused.
func (PDFDict) PDFString ¶
PDFString returns a string representation as found in and written to a PDF file.
func (PDFDict) PDFStringLiteralEntry ¶
func (d PDFDict) PDFStringLiteralEntry(key string) *PDFStringLiteral
PDFStringLiteralEntry returns a PDFStringLiteral object for given key.
func (PDFDict) StringEntry ¶
StringEntry expects and returns a PDFStringLiteral entry for given key. Unused.
func (PDFDict) StringEntryBytes ¶
StringEntryBytes returns the byte slice representing the string value for key.
type PDFFloat ¶
type PDFFloat float64
PDFFloat represents a PDF float object.
type PDFHexLiteral ¶
type PDFHexLiteral string
PDFHexLiteral represents a PDF hex literal object.
func (PDFHexLiteral) Bytes ¶
func (hexliteral PDFHexLiteral) Bytes() ([]byte, error)
Bytes returns the byte representation.
func (PDFHexLiteral) PDFString ¶
func (hexliteral PDFHexLiteral) PDFString() string
PDFString returns the string representation as found in and written to a PDF file.
func (PDFHexLiteral) String ¶
func (hexliteral PDFHexLiteral) String() string
func (PDFHexLiteral) Value ¶
func (hexliteral PDFHexLiteral) Value() string
Value returns a string value for this PDF object.
type PDFIndirectRef ¶
type PDFIndirectRef struct { ObjectNumber PDFInteger GenerationNumber PDFInteger }
PDFIndirectRef represents a PDF indirect object.
func NewPDFIndirectRef ¶
func NewPDFIndirectRef(objectNumber, generationNumber int) *PDFIndirectRef
NewPDFIndirectRef returns a new PDFIndirectRef object.
func (PDFIndirectRef) Equals ¶
func (ir PDFIndirectRef) Equals(indRef PDFIndirectRef) bool
Equals returns true if two indirect References refer to the same object.
func (PDFIndirectRef) PDFString ¶
func (ir PDFIndirectRef) PDFString() string
PDFString returns a string representation as found in and written to a PDF file.
func (PDFIndirectRef) String ¶
func (ir PDFIndirectRef) String() string
type PDFInteger ¶
type PDFInteger int
PDFInteger represents a PDF integer object.
func (PDFInteger) PDFString ¶
func (i PDFInteger) PDFString() string
PDFString returns a string representation as found in and written to a PDF file.
func (PDFInteger) String ¶
func (i PDFInteger) String() string
func (PDFInteger) Value ¶
func (i PDFInteger) Value() int
Value returns an int value for this PDF object.
type PDFName ¶
type PDFName string
PDFName represents a PDF name object.
type PDFObjectStreamDict ¶
type PDFObjectStreamDict struct { PDFStreamDict Prolog []byte ObjCount int FirstObjOffset int ObjArray PDFArray }
PDFObjectStreamDict represents a object stream dictionary.
func NewPDFObjectStreamDict ¶
func NewPDFObjectStreamDict() *PDFObjectStreamDict
NewPDFObjectStreamDict creates a new PDFObjectStreamDict object.
func (*PDFObjectStreamDict) AddObject ¶
func (oStreamDict *PDFObjectStreamDict) AddObject(objNumber int, entry *XRefTableEntry) error
AddObject adds another object to this object stream. Relies on decoded content!
func (*PDFObjectStreamDict) Finalize ¶
func (oStreamDict *PDFObjectStreamDict) Finalize()
Finalize prepares the final content of the objectstream.
func (*PDFObjectStreamDict) IndexedObject ¶
func (oStreamDict *PDFObjectStreamDict) IndexedObject(index int) (PDFObject, error)
IndexedObject returns the object at given index from a PDFObjectStreamDict.
type PDFStats ¶
type PDFStats struct {
// contains filtered or unexported fields
}
PDFStats is a container for stats.
func (PDFStats) AddPageAttr ¶
AddPageAttr adds the occurrence of a field with given name to the pageAttrs set.
func (PDFStats) AddRootAttr ¶
AddRootAttr adds the occurrence of a field with given name to the rootAttrs set.
func (PDFStats) UsesPageAttr ¶
UsesPageAttr returns true if a field with given name is contained in the pageAttrs set.
func (PDFStats) UsesRootAttr ¶
UsesRootAttr returns true if a field with given name is contained in the rootAttrs set.
type PDFStreamDict ¶
type PDFStreamDict struct { PDFDict StreamOffset int64 StreamLength *int64 StreamLengthObjNr *int FilterPipeline []PDFFilter Raw []byte // Encoded Content []byte // Decoded IsPageContent bool }
PDFStreamDict represents a PDF stream dict object.
func NewPDFStreamDict ¶
func NewPDFStreamDict(pdfDict PDFDict, streamOffset int64, streamLength *int64, streamLengthObjNr *int, filterPipeline []PDFFilter) PDFStreamDict
NewPDFStreamDict creates a new PDFStreamDict for given PDFDict, stream offset and length.
func (PDFStreamDict) HasSoleFilterNamed ¶
func (streamDict PDFStreamDict) HasSoleFilterNamed(filterName string) bool
HasSoleFilterNamed returns true if there is exactly one filter defined for a stream dict.
type PDFStringLiteral ¶
type PDFStringLiteral string
PDFStringLiteral represents a PDF string literal object.
func DateStringLiteral ¶
func DateStringLiteral(t time.Time) PDFStringLiteral
DateStringLiteral returns a PDFStringLiteral for time.
func (PDFStringLiteral) PDFString ¶
func (stringliteral PDFStringLiteral) PDFString() string
PDFString returns a string representation as found in and written to a PDF file.
func (PDFStringLiteral) String ¶
func (stringliteral PDFStringLiteral) String() string
func (PDFStringLiteral) Value ¶
func (stringliteral PDFStringLiteral) Value() string
Value returns a string value for this PDF object.
type PDFVersion ¶
type PDFVersion int
PDFVersion is a type for the internal representation of PDF versions.
const ( V10 PDFVersion = iota V11 V12 V13 V14 V15 V16 V17 )
Constants for all PDF versions up to v1.7
func Version ¶
func Version(versionStr string) (PDFVersion, error)
Version returns the PDFVersion for a version string.
type PDFXRefStreamDict ¶
type PDFXRefStreamDict struct { PDFStreamDict Size int Objects []int W [3]int PreviousOffset *int64 }
PDFXRefStreamDict represents a cross reference stream dictionary.
func NewPDFXRefStreamDict ¶
func NewPDFXRefStreamDict(ctx *PDFContext) *PDFXRefStreamDict
NewPDFXRefStreamDict creates a new PDFXRefStreamDict object.
type ReadContext ¶
type ReadContext struct { // The PDF-File which gets processed. FileName string File *os.File FileSize int64 BinaryTotalSize int64 // total stream data BinaryImageSize int64 // total image stream data BinaryFontSize int64 // total font stream data (fontfiles) BinaryImageDuplSize int64 // total obsolet image stream data after optimization BinaryFontDuplSize int64 // total obsolet font stream data after optimization Linearized bool // File is linearized. Hybrid bool // File is a hybrid PDF file. UsingObjectStreams bool // File is using object streams. ObjectStreams IntSet // All object numbers of any object streams found which need to be decoded. UsingXRefStreams bool // File is using xref streams. XRefStreams IntSet // All object numbers of any xref streams found. }
ReadContext represents the context for reading a PDF file.
func (*ReadContext) IsObjectStreamObject ¶
func (rc *ReadContext) IsObjectStreamObject(i int) bool
IsObjectStreamObject returns true if object i is a an object stream. All compressed objects are object streams.
func (*ReadContext) IsXRefStreamObject ¶
func (rc *ReadContext) IsXRefStreamObject(i int) bool
IsXRefStreamObject returns true if object #i is a an xref stream.
func (*ReadContext) LogStats ¶
func (rc *ReadContext) LogStats(optimized bool)
LogStats logs stats for read file.
func (*ReadContext) ObjectStreamsString ¶
func (rc *ReadContext) ObjectStreamsString() (int, string)
ObjectStreamsString returns a formatted string and the number of object stream objects.
func (*ReadContext) XRefStreamsString ¶
func (rc *ReadContext) XRefStreamsString() (int, string)
XRefStreamsString returns a formatted string and the number of xref stream objects.
type WriteContext ¶
type WriteContext struct { // The PDF-File which gets generated. DirName string FileName string FileSize int64 *bufio.Writer Command string // command in effect. ExtractPageNr int // page to be generated for rendering a single-page/PDF. ExtractPages IntSet // pages to be generated for a trimmed PDF. BinaryTotalSize int64 // total stream data, counts 100% all stream data written. BinaryImageSize int64 // total image stream data written = Read.BinaryImageSize. BinaryFontSize int64 // total font stream data (fontfiles) = copy of Read.BinaryFontSize. Table map[int]int64 // object write offsets Offset int64 // current write offset WriteToObjectStream bool // if true start to embed objects into object streams and obey ObjectStreamMaxObjects. CurrentObjStream *int // if not nil, any new non-stream-object gets added to the object stream with this object number. Eol string // end of line char sequence }
WriteContext represents the context for writing a PDF file.
func NewWriteContext ¶
func NewWriteContext(eol string) *WriteContext
NewWriteContext returns a new WriteContext.
func (*WriteContext) ExtractPage ¶
func (wc *WriteContext) ExtractPage(i int) bool
ExtractPage returns true if page i needs to be generated.
func (*WriteContext) HasWriteOffset ¶
func (wc *WriteContext) HasWriteOffset(objNumber int) bool
HasWriteOffset returns true if an object has already been written to PDFDestination.
func (*WriteContext) LogStats ¶
func (wc *WriteContext) LogStats()
LogStats logs stats for written file.
func (*WriteContext) ReducedFeatureSet ¶
func (wc *WriteContext) ReducedFeatureSet() bool
ReducedFeatureSet returns true for Split,Trim,Merge,ExtractPages. Don't confuse with pdfcpu commands, these are internal triggers.
func (*WriteContext) SetWriteOffset ¶
func (wc *WriteContext) SetWriteOffset(objNumber int)
SetWriteOffset saves the current write offset to the PDFDestination.
func (*WriteContext) WriteEol ¶
func (wc *WriteContext) WriteEol() error
WriteEol writes an end of line sequence.
type XRefTable ¶
type XRefTable struct { Table map[int]*XRefTableEntry Size *int // Object count from PDF trailer dict. PageCount int // Number of pages, set during validation. Root *PDFIndirectRef // Pointer to catalog (reference to root object). RootDict *PDFDict // Catalog Names map[string]*Node // Cache for name trees as found in catalog. Encrypt *PDFIndirectRef // Encrypt dict. E *Enc EncKey []byte // Encrypt key. AES4Strings bool AES4Streams bool AES4EmbeddedStreams bool // PDF Version HeaderVersion *PDFVersion // The PDF version the source is claiming to us as per its header. RootVersion *PDFVersion // Optional PDF version taking precedence over the header version. // Document information section Info *PDFIndirectRef // Infodict (reference to info dict object) ID *PDFArray // from info dict (or trailer?) Author string Creator string Producer string // Linearization section (not yet supported) OffsetPrimaryHintTable *int64 OffsetOverflowHintTable *int64 LinearizationObjs IntSet // Offspec section AdditionalStreams *PDFArray // array of PDFIndirectRef - trailer :e.g., Oasis "Open Doc" // Statistics Stats PDFStats Tagged bool // File is using tags. This is important for ??? // Validation Valid bool // true means successful validated against ISO 32000. ValidationMode int // see Configuration Optimized bool }
XRefTable represents a PDF cross reference table plus stats for a PDF file.
func CreateAcroFormDemoXRef ¶
CreateAcroFormDemoXRef creates a PDF file with an AcroForm example.
func CreateAnnotationDemoXRef ¶
CreateAnnotationDemoXRef creates a PDF file with examples of annotations and actions.
func (*XRefTable) BindNameTrees ¶
BindNameTrees syncs up the internal name tree cache with the xreftable.
func (*XRefTable) CatalogHasPieceInfo ¶
CatalogHasPieceInfo returns true if the root has an entry for \"PieceInfo\".
func (*XRefTable) DeleteObject ¶
DeleteObject marks an object as free and inserts it into the free list right after the head.
func (*XRefTable) DeleteObjectGraph ¶
DeleteObjectGraph deletes all objects reachable by indRef.
func (*XRefTable) Dereference ¶
Dereference resolves an indirect object and returns the resulting PDF object.
func (*XRefTable) DereferenceArray ¶
DereferenceArray resolves and validates an array object, which may be an indirect reference.
func (*XRefTable) DereferenceDict ¶
DereferenceDict resolves and validates a dictionary object, which may be an indirect reference.
func (*XRefTable) DereferenceInteger ¶
func (xRefTable *XRefTable) DereferenceInteger(obj PDFObject) (*PDFInteger, error)
DereferenceInteger resolves and validates an integer object, which may be an indirect reference.
func (*XRefTable) DereferenceName ¶
func (xRefTable *XRefTable) DereferenceName(obj PDFObject, sinceVersion PDFVersion, validate func(string) bool) (n PDFName, err error)
DereferenceName resolves and validates a name object, which may be an indirect reference.
func (*XRefTable) DereferenceStreamDict ¶
func (xRefTable *XRefTable) DereferenceStreamDict(obj PDFObject) (*PDFStreamDict, error)
DereferenceStreamDict resolves and validates a stream dictionary object, which may be an indirect reference.
func (*XRefTable) DereferenceStringLiteral ¶
func (xRefTable *XRefTable) DereferenceStringLiteral(obj PDFObject, sinceVersion PDFVersion, validate func(string) bool) (s PDFStringLiteral, err error)
DereferenceStringLiteral resolves and validates a string literal object, which may be an indirect reference.
func (*XRefTable) DereferenceStringOrHexLiteral ¶
func (xRefTable *XRefTable) DereferenceStringOrHexLiteral(obj PDFObject, sinceVersion PDFVersion, validate func(string) bool) (o PDFObject, err error)
DereferenceStringOrHexLiteral resolves and validates a string or hex literal object, which may be an indirect reference.
func (*XRefTable) EncryptDict ¶
EncryptDict returns a pointer to the root object / catalog.
func (*XRefTable) EnsureCollection ¶
EnsureCollection makes sure there is a Collection entry in the catalog. Needed for portfolio / portable collections eg. for file attachments.
func (*XRefTable) EnsureValidFreeList ¶
EnsureValidFreeList ensures the integrity of the free list associated with the recorded free objects. See 7.5.4 Cross-Reference Table
func (*XRefTable) Find ¶
func (xRefTable *XRefTable) Find(objNumber int) (*XRefTableEntry, bool)
Find returns the XRefTable entry for given object number.
func (*XRefTable) FindObject ¶
FindObject returns the object of the XRefTableEntry for a specific object number.
func (*XRefTable) FindTableEntry ¶
func (xRefTable *XRefTable) FindTableEntry(objNumber int, generationNumber int) (*XRefTableEntry, bool)
FindTableEntry returns the XRefTable entry for given object and generation numbers.
func (*XRefTable) FindTableEntryForIndRef ¶
func (xRefTable *XRefTable) FindTableEntryForIndRef(indRef *PDFIndirectRef) (*XRefTableEntry, bool)
FindTableEntryForIndRef returns the XRefTable entry for given indirect reference.
func (*XRefTable) FindTableEntryLight ¶
func (xRefTable *XRefTable) FindTableEntryLight(objNumber int) (*XRefTableEntry, bool)
FindTableEntryLight returns the XRefTable entry for given object number.
func (*XRefTable) Free ¶
func (xRefTable *XRefTable) Free(objNumber int) (*XRefTableEntry, error)
Free returns the cross ref table entry for given number of a free object.
func (*XRefTable) IDFirstElement ¶
IDFirstElement returns the first element of ID.
func (*XRefTable) IndRefForNewObject ¶
func (xRefTable *XRefTable) IndRefForNewObject(obj PDFObject) (*PDFIndirectRef, error)
IndRefForNewObject inserts an object into the xRefTable and returns an indirect reference to it.
func (*XRefTable) InsertAndUseRecycled ¶
func (xRefTable *XRefTable) InsertAndUseRecycled(xRefTableEntry XRefTableEntry) (objNumber int, err error)
InsertAndUseRecycled adds given xRefTableEntry into the cross reference table utilizing the freelist.
func (*XRefTable) InsertNew ¶
func (xRefTable *XRefTable) InsertNew(xRefTableEntry XRefTableEntry) (objNumber int)
InsertNew adds given xRefTableEntry at next new objNumber into the cross reference table. Only to be called once an xRefTable has been generated completely and all trailer dicts have been processed. xRefTable.Size is the size entry of the first trailer dict processed. Called on creation of new object streams. Called by InsertAndUseRecycled.
func (*XRefTable) InsertObject ¶
InsertObject inserts an object into the xRefTable.
func (*XRefTable) IsLinearizationObject ¶
IsLinearizationObject returns true if object #i is a a linearization object.
func (*XRefTable) LinearizationObjsString ¶
LinearizationObjsString returns a formatted string and the number of objs.
func (*XRefTable) LocateNameTree ¶
LocateNameTree locates/ensures a specific name tree.
func (*XRefTable) MissingObjects ¶
MissingObjects returns the number of objects that were not written plus the corresponding comma separated string representation.
func (*XRefTable) NewEmbeddedFileStreamDict ¶
func (xRefTable *XRefTable) NewEmbeddedFileStreamDict(filename string) (*PDFStreamDict, error)
NewEmbeddedFileStreamDict creates and returns an embeddedFileStreamDict containing the file "filename".
func (*XRefTable) NewFileSpecDict ¶
func (xRefTable *XRefTable) NewFileSpecDict(filename string, indRefStreamDict PDFIndirectRef) (*PDFDict, error)
NewFileSpecDict creates and returns a new fileSpec dictionary.
func (*XRefTable) NewPDFStreamDict ¶
func (xRefTable *XRefTable) NewPDFStreamDict(filename string) (*PDFStreamDict, error)
NewPDFStreamDict creates a streamDict for buf.
func (*XRefTable) NewSoundStreamDict ¶
func (xRefTable *XRefTable) NewSoundStreamDict(filename string, samplingRate int, fileSpecDict *PDFDict) (*PDFStreamDict, error)
NewSoundStreamDict returns a new sound stream dict.
func (*XRefTable) NextForFree ¶
NextForFree returns the number of the object the free object with objNumber links to. This is the successor of this free object in the free list.
func (*XRefTable) Pages ¶
func (xRefTable *XRefTable) Pages() (*PDFIndirectRef, error)
Pages returns the Pages reference contained in the catalog.
func (*XRefTable) ParseRootVersion ¶
ParseRootVersion returns a string representation for an optional Version entry in the root object.
func (*XRefTable) RemoveCollection ¶
RemoveCollection removes an existing Collection entry from the catalog.
func (*XRefTable) RemoveEmbeddedFilesNameTree ¶
RemoveEmbeddedFilesNameTree removes both the embedded files name tree and the Collection dict.
func (*XRefTable) RemoveNameTree ¶
RemoveNameTree removes a specific name tree. Also removes a resulting empty names dict.
func (*XRefTable) UndeleteObject ¶
UndeleteObject ensures an object is not recorded in the free list. e.g. sometimes caused by indirect references to free objects in the original PDF file.
func (*XRefTable) ValidateVersion ¶
func (xRefTable *XRefTable) ValidateVersion(element string, sinceVersion PDFVersion) error
ValidateVersion validates against the xRefTable's version.
func (*XRefTable) Version ¶
func (xRefTable *XRefTable) Version() PDFVersion
Version returns the PDF version of the PDF writer that created this file. Before V1.4 this is the header version. Since V1.4 the catalog may contain a Version entry which takes precedence over the header version.
func (*XRefTable) VersionString ¶
VersionString return a string representation for this PDF files PDF version.
type XRefTableEntry ¶
type XRefTableEntry struct { Free bool Offset *int64 Generation *int Object PDFObject Compressed bool ObjectStream *int ObjectStreamInd *int }
XRefTableEntry represents an entry in the PDF cross reference table.
This may wrap a free object, a compressed object or any in use PDF object:
PDFDict, PDFStreamDict, PDFObjectStreamDict, PDFXRefStreamDict, PDFArray, PDFInteger, PDFFloat, PDFName, PDFStringLiteral, PDFHexLiteral, PDFBoolean
func NewFreeHeadXRefTableEntry ¶
func NewFreeHeadXRefTableEntry() *XRefTableEntry
NewFreeHeadXRefTableEntry returns the xref table entry for object 0 which is per definition the head of the free list (list of free objects).
func NewXRefTableEntryGen0 ¶
func NewXRefTableEntryGen0(obj PDFObject) *XRefTableEntry
NewXRefTableEntryGen0 returns a cross reference table entry for an object with generation 0.
Source Files ¶
- array.go
- attach.go
- configuration.go
- context.go
- createAnnotations.go
- createRenditions.go
- createTestPDF.go
- crypto.go
- dict.go
- doc.go
- equal.go
- extract.go
- filter.go
- iccProfile.go
- merge.go
- nameTree.go
- optimize.go
- parse.go
- read.go
- resources.go
- stats.go
- streamdict.go
- string.go
- types.go
- utf16.go
- validateAcroForm.go
- validateAction.go
- validateAnnotations.go
- validateColorspace.go
- validateDate.go
- validateDestination.go
- validateExtGState.go
- validateFileSpec.go
- validateFont.go
- validateFunction.go
- validateInfo.go
- validateMedia.go
- validateNameTree.go
- validateNumberTree.go
- validateObjects.go
- validateOptionalContent.go
- validateOutlineTree.go
- validatePages.go
- validatePattern.go
- validateProperties.go
- validateShading.go
- validateStructTree.go
- validateThread.go
- validateXObject.go
- validateXReftable.go
- version.go
- write.go
- writeImage.go
- writeInfo.go
- writeObjects.go
- writePages.go
- writeStats.go
- xreftable.go