@jackgreen2018/pdf-engine 1.0.43 → 1.0.45
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/LICENSE +21 -0
- package/README.md +33 -143
- package/dist/index.js +18 -49
- package/index.d.ts +6 -0
- package/package.json +14 -38
- package/pkg/LICENSE +21 -0
- package/pkg/README.md +33 -143
- package/pkg/package.json +2 -1
- package/pkg/pdf_engine.d.ts +8 -6
- package/pkg/pdf_engine.js +1 -1
- package/pkg/pdf_engine_bg.js +78 -60
- package/pkg/pdf_engine_bg.wasm +0 -0
- package/pkg/pdf_engine_bg.wasm.d.ts +6 -5
- package/dist/cli.d.ts +0 -3
- package/dist/cli.d.ts.map +0 -1
- package/dist/cli.js +0 -60
- package/dist/index.d.ts +0 -17
- package/dist/index.d.ts.map +0 -1
- package/src/cli.ts +0 -66
- package/src/index.ts +0 -62
- package/src/lib.rs +0 -294
package/src/lib.rs
DELETED
|
@@ -1,294 +0,0 @@
|
|
|
1
|
-
use wasm_bindgen::prelude::*;
|
|
2
|
-
use js_sys::{Array, Uint8Array};
|
|
3
|
-
use lopdf::{Document, Object, ObjectId};
|
|
4
|
-
use std::collections::BTreeMap;
|
|
5
|
-
|
|
6
|
-
#[wasm_bindgen]
|
|
7
|
-
pub fn init() -> Result<(), JsValue> {
|
|
8
|
-
Ok(())
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
#[wasm_bindgen]
|
|
12
|
-
pub fn get_page_count(buffer: &[u8]) -> Result<u32, JsValue> {
|
|
13
|
-
let doc = Document::load_mem(buffer)
|
|
14
|
-
.map_err(|e| JsValue::from_str(&format!("PDF error: {}", e)))?;
|
|
15
|
-
Ok(doc.get_pages().len().max(1) as u32)
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
/// Decode PDF hex strings (<HHHH...>) in content stream operators.
|
|
19
|
-
fn decode_hex_strings(content: &str) -> String {
|
|
20
|
-
let mut result = String::new();
|
|
21
|
-
let bytes = content.as_bytes();
|
|
22
|
-
let mut i = 0;
|
|
23
|
-
while i < bytes.len() {
|
|
24
|
-
if bytes[i] == b'<' {
|
|
25
|
-
let mut j = i + 1;
|
|
26
|
-
while j < bytes.len() && bytes[j] != b'>' {
|
|
27
|
-
j += 1;
|
|
28
|
-
}
|
|
29
|
-
if j > i + 1 && j < bytes.len() {
|
|
30
|
-
let hex = &content[i+1..j];
|
|
31
|
-
if hex.len() % 2 == 0 && hex.chars().all(|c| c.is_ascii_hexdigit()) {
|
|
32
|
-
let mut buf = Vec::with_capacity(hex.len() / 2);
|
|
33
|
-
for k in (0..hex.len()).step_by(2) {
|
|
34
|
-
if let Ok(byte) = u8::from_str_radix(&hex[k..k+2], 16) {
|
|
35
|
-
buf.push(byte);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
if let Ok(s) = String::from_utf8(buf) {
|
|
39
|
-
result.push_str(&s);
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
i = j + 1;
|
|
44
|
-
} else {
|
|
45
|
-
i += 1;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
result
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
/// Extract text from all content streams by decoding hex strings.
|
|
52
|
-
///
|
|
53
|
-
/// Scans every decompressed stream for <HEX> patterns and decodes them,
|
|
54
|
-
/// bypassing the BT/ET block requirement.
|
|
55
|
-
fn collect_page_text(doc: &Document) -> String {
|
|
56
|
-
let mut text = String::new();
|
|
57
|
-
|
|
58
|
-
for (_id, obj) in doc.objects.iter() {
|
|
59
|
-
let Object::Stream(ref stream) = obj else { continue };
|
|
60
|
-
let mut s = stream.clone();
|
|
61
|
-
let _ = s.decompress();
|
|
62
|
-
let content = String::from_utf8_lossy(&s.content);
|
|
63
|
-
if content.is_empty() {
|
|
64
|
-
continue;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
let decoded = decode_hex_strings(&content);
|
|
68
|
-
if !decoded.is_empty() {
|
|
69
|
-
if !text.is_empty() {
|
|
70
|
-
text.push('\n');
|
|
71
|
-
}
|
|
72
|
-
text.push_str(&decoded);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
text
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
#[wasm_bindgen]
|
|
80
|
-
pub fn extract_text(buffer: &[u8]) -> Result<String, JsValue> {
|
|
81
|
-
let doc = Document::load_mem(buffer)
|
|
82
|
-
.map_err(|e| JsValue::from_str(&format!("PDF error: {}", e)))?;
|
|
83
|
-
|
|
84
|
-
let text = collect_page_text(&doc);
|
|
85
|
-
|
|
86
|
-
if text.is_empty() {
|
|
87
|
-
Ok("No text extracted.".to_string())
|
|
88
|
-
} else {
|
|
89
|
-
Ok(text)
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
/// Remap all ObjectId references in `obj` using `id_map`.
|
|
94
|
-
fn remap_refs(obj: &mut Object, id_map: &BTreeMap<ObjectId, ObjectId>) {
|
|
95
|
-
match obj {
|
|
96
|
-
Object::Reference(r) => {
|
|
97
|
-
if let Some(&new_id) = id_map.get(r) {
|
|
98
|
-
*r = new_id;
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
Object::Array(arr) => {
|
|
102
|
-
for item in arr {
|
|
103
|
-
remap_refs(item, id_map);
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
Object::Dictionary(dict) => {
|
|
107
|
-
for (_, v) in dict.iter_mut() {
|
|
108
|
-
remap_refs(v, id_map);
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
Object::Stream(stream) => {
|
|
112
|
-
for (_, v) in stream.dict.iter_mut() {
|
|
113
|
-
remap_refs(v, id_map);
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
_ => {}
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
/// Collect all object IDs reachable from `start` in `doc` (including start itself).
|
|
121
|
-
fn collect_reachable(start: ObjectId, doc: &Document, visited: &mut BTreeMap<ObjectId, Object>) {
|
|
122
|
-
if visited.contains_key(&start) {
|
|
123
|
-
return;
|
|
124
|
-
}
|
|
125
|
-
if let Ok(obj) = doc.get_object(start) {
|
|
126
|
-
visited.insert(start, obj.clone());
|
|
127
|
-
walk_refs(&obj, doc, visited);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
/// Walk all references in `obj` and collect reachable objects.
|
|
132
|
-
fn walk_refs(obj: &Object, doc: &Document, visited: &mut BTreeMap<ObjectId, Object>) {
|
|
133
|
-
match obj {
|
|
134
|
-
Object::Reference(r) => collect_reachable(*r, doc, visited),
|
|
135
|
-
Object::Array(arr) => {
|
|
136
|
-
for item in arr {
|
|
137
|
-
walk_refs(item, doc, visited);
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
Object::Dictionary(dict) => {
|
|
141
|
-
for (_, v) in dict.iter() {
|
|
142
|
-
walk_refs(v, doc, visited);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
Object::Stream(stream) => {
|
|
146
|
-
for (_, v) in stream.dict.iter() {
|
|
147
|
-
walk_refs(v, doc, visited);
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
_ => {}
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
/// Copy page at `page_obj_id` from `src` into `dst`, updating all internal references.
|
|
155
|
-
fn copy_page_into(src: &Document, dst: &mut Document, page_obj_id: ObjectId) -> ObjectId {
|
|
156
|
-
let mut to_copy: BTreeMap<ObjectId, Object> = BTreeMap::new();
|
|
157
|
-
collect_reachable(page_obj_id, src, &mut to_copy);
|
|
158
|
-
|
|
159
|
-
let mut id_map: BTreeMap<ObjectId, ObjectId> = BTreeMap::new();
|
|
160
|
-
let mut next_id = dst.max_id + 1;
|
|
161
|
-
|
|
162
|
-
let mut ids_sorted: Vec<ObjectId> = to_copy.keys().cloned().collect();
|
|
163
|
-
ids_sorted.sort_by_key(|(x, _)| *x);
|
|
164
|
-
|
|
165
|
-
for old_id in ids_sorted {
|
|
166
|
-
let new_id = loop {
|
|
167
|
-
let candidate = (next_id, 0);
|
|
168
|
-
if !dst.objects.contains_key(&candidate) {
|
|
169
|
-
break candidate;
|
|
170
|
-
}
|
|
171
|
-
next_id += 1;
|
|
172
|
-
};
|
|
173
|
-
id_map.insert(old_id, new_id);
|
|
174
|
-
let mut obj = to_copy[&old_id].clone();
|
|
175
|
-
remap_refs(&mut obj, &id_map);
|
|
176
|
-
dst.objects.insert(new_id, obj);
|
|
177
|
-
dst.max_id = next_id.max(dst.max_id);
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
*id_map.get(&page_obj_id).unwrap_or(&(0, 0))
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
#[wasm_bindgen]
|
|
184
|
-
pub fn merge(pdf_buffers: Array) -> Result<Uint8Array, JsValue> {
|
|
185
|
-
let len = pdf_buffers.length();
|
|
186
|
-
if len == 0 {
|
|
187
|
-
return Ok(Uint8Array::new_from_slice(&[]));
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
let first_buf = pdf_buffers.get(0).dyn_into::<Uint8Array>()
|
|
191
|
-
.map_err(|_| JsValue::from_str("merge: first item not Uint8Array"))?;
|
|
192
|
-
let mut doc = Document::load_mem(&first_buf.to_vec())
|
|
193
|
-
.map_err(|e| JsValue::from_str(&format!("PDF load error: {}", e)))?;
|
|
194
|
-
|
|
195
|
-
for i in 1..len {
|
|
196
|
-
let buf = pdf_buffers.get(i).dyn_into::<Uint8Array>()
|
|
197
|
-
.map_err(|_| JsValue::from_str("merge: item not Uint8Array"))?;
|
|
198
|
-
let other = Document::load_mem(&buf.to_vec())
|
|
199
|
-
.map_err(|e| JsValue::from_str(&format!("PDF load error: {}", e)))?;
|
|
200
|
-
|
|
201
|
-
let page_count = doc.get_pages().len() as i64;
|
|
202
|
-
|
|
203
|
-
for &page_obj_id in other.get_pages().values() {
|
|
204
|
-
let new_page_id = copy_page_into(&other, &mut doc, page_obj_id);
|
|
205
|
-
if let Ok(root_ref) = doc.trailer.get(b"Root").and_then(|r| r.as_reference()) {
|
|
206
|
-
if let Some(Object::Dictionary(ref mut root_dict)) = doc.objects.get_mut(&root_ref) {
|
|
207
|
-
if let Ok(pages_ref) = root_dict.get(b"Pages").and_then(|p| p.as_reference()) {
|
|
208
|
-
if let Some(Object::Dictionary(ref mut pages_dict)) = doc.objects.get_mut(&pages_ref) {
|
|
209
|
-
if let Ok(kids) = pages_dict.get_mut(b"Kids") {
|
|
210
|
-
if let Object::Array(ref mut kids_arr) = kids {
|
|
211
|
-
kids_arr.push(Object::Reference(new_page_id));
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
if let Ok(count) = pages_dict.get_mut(b"Count") {
|
|
215
|
-
*count = Object::Integer(page_count + 1);
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
let mut buf = Vec::new();
|
|
225
|
-
doc.save_to(&mut buf).map_err(|e| JsValue::from_str(&format!("PDF save error: {}", e)))?;
|
|
226
|
-
Ok(Uint8Array::new_from_slice(&buf))
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
#[wasm_bindgen]
|
|
230
|
-
pub fn split(buffer: &[u8], pages: Array) -> Result<Array, JsValue> {
|
|
231
|
-
let doc = Document::load_mem(buffer)
|
|
232
|
-
.map_err(|e| JsValue::from_str(&format!("PDF error: {}", e)))?;
|
|
233
|
-
let page_len = pages.length();
|
|
234
|
-
|
|
235
|
-
let page_map: BTreeMap<u32, ObjectId> = doc.get_pages();
|
|
236
|
-
let results = Array::new();
|
|
237
|
-
|
|
238
|
-
for i in 0..page_len {
|
|
239
|
-
let page_num = pages.get(i).as_f64().unwrap_or(0.0) as u32;
|
|
240
|
-
// PDF page numbers are 1-based internally
|
|
241
|
-
let Some(&page_obj_id) = page_map.get(&(page_num + 1)) else { continue };
|
|
242
|
-
|
|
243
|
-
let mut new_doc = Document::with_version("1.5");
|
|
244
|
-
let new_page_id = copy_page_into(&doc, &mut new_doc, page_obj_id);
|
|
245
|
-
|
|
246
|
-
// Build the page tree: Pages -> [page], Catalog -> Pages
|
|
247
|
-
let pages_id = (new_doc.max_id + 1, 0);
|
|
248
|
-
let catalog_id = (new_doc.max_id + 2, 0);
|
|
249
|
-
|
|
250
|
-
let pages_dict = lopdf::dictionary! {
|
|
251
|
-
"Type" => "Pages",
|
|
252
|
-
"Kids" => vec![Object::Reference(new_page_id)],
|
|
253
|
-
"Count" => 1
|
|
254
|
-
};
|
|
255
|
-
new_doc.objects.insert(pages_id, Object::Dictionary(pages_dict));
|
|
256
|
-
new_doc.max_id = pages_id.0.max(new_doc.max_id);
|
|
257
|
-
|
|
258
|
-
let catalog_dict = lopdf::dictionary! {
|
|
259
|
-
"Type" => "Catalog",
|
|
260
|
-
"Pages" => Object::Reference(pages_id)
|
|
261
|
-
};
|
|
262
|
-
new_doc.objects.insert(catalog_id, Object::Dictionary(catalog_dict));
|
|
263
|
-
new_doc.max_id = catalog_id.0.max(new_doc.max_id);
|
|
264
|
-
new_doc.trailer.set("Root", Object::Reference(catalog_id));
|
|
265
|
-
|
|
266
|
-
let mut pdf_bytes = Vec::new();
|
|
267
|
-
let _ = new_doc.save_to(&mut pdf_bytes);
|
|
268
|
-
results.push(&Uint8Array::new_from_slice(&pdf_bytes).into());
|
|
269
|
-
}
|
|
270
|
-
|
|
271
|
-
if results.length() == 0 {
|
|
272
|
-
results.push(&Uint8Array::new_from_slice(&[]).into());
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
Ok(results)
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
#[wasm_bindgen]
|
|
279
|
-
pub fn get_pdf_info(buffer: &[u8]) -> Result<String, JsValue> {
|
|
280
|
-
let count = get_page_count(buffer)?;
|
|
281
|
-
Ok(format!("PDF with {} pages", count))
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
#[cfg(test)]
|
|
285
|
-
mod tests {
|
|
286
|
-
use super::*;
|
|
287
|
-
|
|
288
|
-
#[test]
|
|
289
|
-
fn page_count_of_empty_doc_is_one() {
|
|
290
|
-
// ponytail: lopdf get_pages() returns empty map for docs with no pages
|
|
291
|
-
let doc = Document::with_version("1.5");
|
|
292
|
-
assert_eq!(doc.get_pages().len().max(1), 1);
|
|
293
|
-
}
|
|
294
|
-
}
|