|
5 | 5 | // Features |
6 | 6 | // |
7 | 7 | // PDF Processing |
8 | | -// Core operation: New, Open, Save, SaveAs, Close, SetLicense, WordCount, CharacterCount |
9 | | -// Page core operation: Add, Insert, Delete, Count, WordCount, CharacterCount, IsBlank |
10 | | -// Organize: Optimize, OptimizeResource, Grayscale, Rotate, SetBackground, Repair |
| 8 | +// Main core operation: New, Open, Save, SaveAs, Close, SetLicense, Append, AppendPages, MergeDocuments, SplitDocument, SplitAtPage |
| 9 | +// Other core operation: WordCount, CharacterCount, Bytes |
| 10 | +// Page main core operation: Add, Insert, Delete, Count |
| 11 | +// Page other core operation: WordCount, CharacterCount, IsBlank |
| 12 | +// Organize: Optimize, OptimizeResource, Grayscale, Rotate, SetBackground, Repair, Flatten |
11 | 13 | // Page organize: Rotate, SetSize, Grayscale, AddText |
| 14 | +// Remove operation: RemoveAnnotations, RemoveAttachments, RemoveBlankPages, RemoveBookmarks, RemoveHiddenText, RemoveImages, RemoveJavaScripts |
| 15 | +// Page remove operation: PageRemoveAnnotations, PageRemoveHiddenText, PageRemoveImages |
12 | 16 | // Others: Get contents as plain text |
13 | 17 | // |
14 | 18 | // PDF converting and saving |
15 | | -// Microsoft Office: DOC, DOCX, XLSX, PPTX |
| 19 | +// Microsoft Office: DOC, DOCX, XLSX, PPTX, DOCX with Enhanced Recognition Mode (fully editable tables and paragraphs) |
16 | 20 | // Images: JPEG, PNG, BMP, TIFF |
17 | | -// Others: EPUB, DICOM, SVG, XPS, TEX, TXT |
| 21 | +// Others: EPUB, DICOM, SVG, SVG(ZIP), XPS, TEX, TXT, MD, N-UP PDF, BOOKLET PDF |
| 22 | +// Export with AcroForm: FDF, XFDF, XML |
| 23 | +// |
| 24 | +// Metadata |
| 25 | +// Product Info: JSON with product name, version, release date, and license status |
18 | 26 | // |
19 | 27 | // Platforms |
20 | 28 | // |
|
107 | 115 | // The test run from the root package folder: |
108 | 116 | // go test -v |
109 | 117 | // |
110 | | -// Aspose home |
| 118 | +// License |
| 119 | +// |
| 120 | +// - The Go source code is licensed under the MIT License. |
| 121 | +// |
| 122 | +// - The shared native libraries (DLL, SO, DYLIB) are proprietary and require a commercial license. |
| 123 | +// |
| 124 | +// Evaluation version limitations: |
| 125 | +// |
| 126 | +// - Documents created with an evaluation watermark. |
| 127 | +// |
| 128 | +// - Limit on number of pages processed (first 4 pages). |
111 | 129 | // |
112 | | -// https://www.aspose.com |
| 130 | +// For production use, a commercial license is required. |
113 | 131 | // |
114 | | -// GitHub.com |
| 132 | +// Resources |
115 | 133 | // |
116 | | -// https://github.com/aspose-pdf/aspose-pdf-go-cpp |
| 134 | +// Aspose home: https://www.aspose.com |
| 135 | +// Product Page: https://products.aspose.com/pdf/go-cpp/ |
| 136 | +// Docs: https://docs.aspose.com/pdf/go-cpp/ |
| 137 | +// Demos: https://products.aspose.app/pdf/family |
| 138 | +// API Reference: https://reference.aspose.com/pdf/go-cpp/ |
| 139 | +// Examples: https://github.com/aspose-pdf/aspose-pdf-go-cpp/ |
| 140 | +// Blog: https://blog.aspose.com/category/pdf/ |
| 141 | +// Free Support: https://forum.aspose.com/c/pdf |
| 142 | +// Temporary License: https://purchase.aspose.com/temporary-license |
| 143 | +// GitHub.com: https://github.com/aspose-pdf/aspose-pdf-go-cpp |
| 144 | +// pkg.go.dev: https://pkg.go.dev/github.com/aspose-pdf/aspose-pdf-go-cpp |
117 | 145 | package asposepdf |
0 commit comments