asposepdfnodejs 25.3.0 → 25.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AsposePDFforNode.cjs +2 -2
- package/AsposePDFforNode.mjs +2 -2
- package/AsposePDFforNode.wasm +0 -0
- package/README.md +49 -13
- package/package.json +1 -1
package/AsposePDFforNode.wasm
CHANGED
|
Binary file
|
package/README.md
CHANGED
|
@@ -12,24 +12,60 @@ Add PDF processing, manipulation, and conversion features to your Node.js applic
|
|
|
12
12
|
|
|
13
13
|
## PDF Processing
|
|
14
14
|
|
|
15
|
-
- **Extract text** from PDF pages
|
|
16
|
-
- **Add or extract
|
|
17
|
-
- **Concatenate** or **
|
|
18
|
-
- **
|
|
19
|
-
- **Convert** PDF documents to
|
|
20
|
-
- **
|
|
21
|
-
- **
|
|
22
|
-
- **
|
|
15
|
+
- **Extract text** from PDF pages, including search via regular expressions and hidden text detection.
|
|
16
|
+
- **Add or extract images** to and from PDF documents; remove or replace images when needed.
|
|
17
|
+
- **Concatenate**, **split**, or **reorganize** PDF files; delete specific or blank pages.
|
|
18
|
+
- **Linearize** PDF documents for web optimization and **optimize** internal structure and resources.
|
|
19
|
+
- **Convert** PDF documents to:
|
|
20
|
+
- **Office formats:** DOC, DOCX, XLS, XLSX, PPTX
|
|
21
|
+
- **Web formats:** SVG, SVG (ZIP), XPS, EPUB
|
|
22
|
+
- **Image formats:** JPEG, PNG, BMP, TIFF, DICOM
|
|
23
|
+
- **Other formats:** Grayscale PDF, PDF/A, TeX, TXT
|
|
24
|
+
- **Manipulate** PDF structure and content:
|
|
25
|
+
- Bookmarks, hyperlinks, annotations, attachments, JavaScript
|
|
26
|
+
- Fonts, metadata, layers, background color
|
|
27
|
+
- **Secure PDF documents**:
|
|
28
|
+
- Encrypt, decrypt, set or change passwords
|
|
29
|
+
- Configure access permissions
|
|
30
|
+
- **Digitally sign** PDFs using PKCS#7, validate and remove signatures.
|
|
31
|
+
- **Add or remove** watermarks, stamps, page numbers, headers/footers, background images.
|
|
32
|
+
- **Flatten** PDF documents (forms, annotations, layers).
|
|
33
|
+
- **Create booklets** or generate **N-Up layouts**.
|
|
34
|
+
- **Export form data** (AcroForm) to FDF, XFDF, XML.
|
|
35
|
+
- **Validate** and **convert** to/from **PDF/A** format.
|
|
23
36
|
|
|
24
37
|
## Read & Write PDF & Other Formats
|
|
25
38
|
|
|
26
|
-
**Fixed Layout:**
|
|
39
|
+
**Fixed Layout Support:**
|
|
40
|
+
- PDF, PDF/A
|
|
27
41
|
|
|
28
|
-
|
|
42
|
+
**Save/Export As:**
|
|
43
|
+
- **Office:** DOC, DOCX, XLS, XLSX, PPTX
|
|
44
|
+
- **Images:** JPEG, PNG, BMP, TIFF, DICOM
|
|
45
|
+
- **Other:** EPUB, SVG, SVG (ZIP), TeX, TXT, Grayscale PDF, PDF/A, XPS
|
|
29
46
|
|
|
30
|
-
|
|
31
|
-
-
|
|
32
|
-
|
|
47
|
+
**Input Formats:**
|
|
48
|
+
- TXT, Images (JPEG/PNG/BMP/TIFF)
|
|
49
|
+
|
|
50
|
+
## Advanced Features
|
|
51
|
+
|
|
52
|
+
- **Fonts:** List, embed/unembed, and replace fonts in PDF files.
|
|
53
|
+
- **Metadata:** Set, extract, or remove metadata.
|
|
54
|
+
- **Layers:** Get list of layers, merge or flatten them.
|
|
55
|
+
- **Forms & Annotations:**
|
|
56
|
+
- Delete annotations, bookmarks, JavaScript
|
|
57
|
+
- Flatten forms
|
|
58
|
+
- **Attachments:** Add, extract, or delete file attachments.
|
|
59
|
+
- **Text Tools:**
|
|
60
|
+
- Find, replace, or delete text (including hidden text)
|
|
61
|
+
- Get word and character counts
|
|
62
|
+
|
|
63
|
+
## Additional Utilities
|
|
64
|
+
|
|
65
|
+
- **Repair** corrupted or damaged PDF files.
|
|
66
|
+
- **Generate PDF** from TXT or image files.
|
|
67
|
+
- **Optimize** document resources and structure.
|
|
68
|
+
- **Product diagnostics**: retrieve library info, version, and capabilities.
|
|
33
69
|
|
|
34
70
|
## Platform Independence
|
|
35
71
|
|
package/package.json
CHANGED