Core PDF functions
Contents
[
Hide
]Core PDF functions
| Name | Description |
|---|---|
| New | Create a new PDF-document. |
| Open | Open a PDF-document with filename. |
| Save | Save the previously opened PDF-document. |
| SaveAs | Save the previously opened PDF-document with new filename. |
| Close | Release allocated resources for PDF-document. |
| SetLicense | Set license with filename. |
| ExtractText | Return the PDF-document contents as plain text. |
| WordCount | Return word count in PDF-document. |
| CharacterCount | Return character count in PDF-document. |
| Append | Append pages from another PDF-document. |
| AppendPages | Append selected pages from another PDF-document. |
| MergeDocuments | Create a new PDF-document by merging the provided PDF-documents. |
| SplitDocument | Create multiple new PDF-documents by extracting pages from the source PDF-document. |
| Split | Create multiple new PDF-documents by extracting pages from the current PDF-document. |
| SplitAtPage | Split the PDF-document into two new PDF-documents. |
| SplitAt | Split the current PDF-document into two new PDF-documents. |
| Bytes | Return the contents of the PDF-document as a byte slice. |
| PageAdd | Add new page in PDF-document. |
| PageInsert | Insert new page at the specified position in PDF-document. |
| PageDelete | Delete specified page in PDF-document. |
| PageCount | Return page count in PDF-document. |
| PageWordCount | Return word count on specified page in PDF-document. |
| PageCharacterCount | Return character count on specified page in PDF-document. |
| PageIsBlank | Return page is blank in PDF-document. |
Detailed Description
Core functions for working with PDF files.