@libpdf/core 0.0.1-beta.9 → 0.1.1
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/README.md +16 -1
- package/dist/index.d.mts +5225 -4965
- package/dist/index.mjs +24561 -23379
- package/dist/index.mjs.map +1 -1
- package/package.json +18 -15
package/README.md
CHANGED
|
@@ -129,10 +129,25 @@ const output = await pdf.save();
|
|
|
129
129
|
|
|
130
130
|
LibPDF runs everywhere:
|
|
131
131
|
|
|
132
|
-
- **Node.js**
|
|
132
|
+
- **Node.js** 20+
|
|
133
133
|
- **Bun**
|
|
134
134
|
- **Browsers** (modern, with Web Crypto)
|
|
135
135
|
|
|
136
|
+
## Known Limitations
|
|
137
|
+
|
|
138
|
+
Some features are not yet implemented:
|
|
139
|
+
|
|
140
|
+
| Feature | Status | Notes |
|
|
141
|
+
| --------------------------- | ---------------- | -------------------------------------- |
|
|
142
|
+
| Signature verification | Not implemented | Signing works; verification is planned |
|
|
143
|
+
| TrueType Collections (.ttc) | Not supported | Extract individual fonts first |
|
|
144
|
+
| JBIG2 image decoding | Passthrough only | Images preserved but not decoded |
|
|
145
|
+
| JPEG2000 (JPX) decoding | Passthrough only | Images preserved but not decoded |
|
|
146
|
+
| Certificate encryption | Not supported | Password encryption works |
|
|
147
|
+
| JavaScript actions | Ignored | Form calculations not executed |
|
|
148
|
+
|
|
149
|
+
These limitations are documented to set expectations. Most don't affect typical use cases like form filling, signing, or document manipulation.
|
|
150
|
+
|
|
136
151
|
## Philosophy
|
|
137
152
|
|
|
138
153
|
### Be lenient
|