-
Notifications
You must be signed in to change notification settings - Fork 28
/
pdfwrite.ml
685 lines (639 loc) · 24.5 KB
/
pdfwrite.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
open Pdfutil
open Pdfio
(* If set, extra debug information will be printed to screen *)
let write_debug = ref false
(* The file header. *)
let header pdf =
Printf.sprintf "%%PDF-%i.%i\n%%\128\129\130\131\n" pdf.Pdf.major pdf.Pdf.minor
(* Write the cross-reference table to a channel. *)
let output_string_of_xref i n =
let s = string_of_int n in
let l = String.length s in
for x = 0 to 10 - l - 1 do i.output_char '0' done;
i.output_string s;
i.output_string " 00000 n \n"
let write_xrefs xrefs i =
i.output_string "xref\n";
i.output_string "0 ";
i.output_string (string_of_int (length xrefs + 1));
i.output_string " \n";
i.output_string "0000000000 65535 f \n";
iter (output_string_of_xref i) xrefs
(* Convert a string to one suitable for output. *)
let b = Buffer.create 30
let make_pdf_string s =
Buffer.clear b;
Buffer.add_char b '(';
String.iter
(function
| ('(' | ')' | '\\') as c -> Buffer.add_char b '\\'; Buffer.add_char b c
| '\n' -> Buffer.add_char b '\\'; Buffer.add_char b 'n'
| '\r' -> Buffer.add_char b '\\'; Buffer.add_char b 'r'
| '\t' -> Buffer.add_char b '\\'; Buffer.add_char b 't'
| '\b' -> Buffer.add_char b '\\'; Buffer.add_char b 'b'
| '\012' -> Buffer.add_char b '\\'; Buffer.add_char b 'f'
| c -> Buffer.add_char b c)
s;
Buffer.add_char b ')';
Buffer.contents b
let make_hex_pdf_string s =
Buffer.clear b;
Buffer.add_char b '<';
String.iter (fun c -> Buffer.add_string b (Printf.sprintf "%02x" (int_of_char c))) s;
Buffer.add_char b '>';
Buffer.contents b
(* We have two kinds of flat data to write: Strings and streams (we cannot
represent streams as strings, since there is a langauge limit on the length of
strings. *)
type writeout =
| WString of string
| WStream of Pdf.stream
(* Format a real number.
We want real numbers with no exponents (format compliance), and no trailing
zeroes (compactness). (Jan 2012 - have added special case for whole numbers.
Can still get trailing zeroes on small values e.g 0.00001 => 0.000010, but no
printf way to prevent this). In addition, on 32 bit systems, we now read in
numbers > 2^30 or < -2^30 as floating point values so that we can preserve
them. We should write such numbers out as integers too. But int_of_float gives
the wrong answer here. So we must pre-check and produce an integer instead. *)
let max_int_float = float_of_int max_int
let min_int_float = float_of_int min_int
let format_real x =
let fl = floor x in
if fl = x then
begin
if x > max_int_float || x < min_int_float then
implode (all_but_last (explode (string_of_float x)))
else
string_of_int (int_of_float fl)
end
else
if x < 0.0001 && x > -. 0.0001
then Printf.sprintf "%f" x
else string_of_float x
(* Character codes in a name < 33 or > 126 are replaced with hashed combinations
(e.g #20 for space). If the name contains the null character, a warning is printed. *)
let hexchar = function
| 0 -> '0' | 1 -> '1' | 2 -> '2' | 3 -> '3' | 4 -> '4' | 5 -> '5' | 6 -> '6'
| 7 -> '7' | 8 -> '8' | 9 -> '9' | 10 -> 'A' | 11 -> 'B' | 12 -> 'C'
| 13 -> 'D' | 14 -> 'E' | 15 -> 'F'
| _ -> raise (Failure "hexchar")
let make_pdf_name_inner b s =
for x = 1 to String.length s - 1 do (* skip / *)
match String.get s x with
| '\000' ->
Pdfe.log (Printf.sprintf "Warning: name %S contains the null character\n" s);
Buffer.add_string b "#00"
| h when h < '\033' || h > '\126' || Pdf.is_delimiter h || h = '#' ->
Buffer.add_char b '#';
Buffer.add_char b (hexchar ((int_of_char h) / 16));
Buffer.add_char b (hexchar ((int_of_char h) mod 16));
| h ->
Buffer.add_char b h
done
(* See if a name needs altering by [make_pdf_name_inner]. We ignore the first
character, since a '/' is a delimter, and this is fine... *)
let rec needs_processing_inner s p l =
(p <= l - 1) &&
(match String.unsafe_get s p with
| x when x < '\033' || x > '\126' || Pdf.is_delimiter x || x = '#' -> true
| _ -> needs_processing_inner s (p + 1) l)
let needs_processing s =
let l = String.length s in
if l < 2 then false else
needs_processing_inner s 1 l
let b = Buffer.create 30
let make_pdf_name n =
if needs_processing n then
if n = "" || String.unsafe_get n 0 <> '/' then raise (Pdf.PDFError "bad name") else
begin
Buffer.clear b;
Buffer.add_char b '/';
make_pdf_name_inner b n;
Buffer.contents b
end
else
n
(* Calculate a strings and streams representing the given pdf datatype instance,
assuming it has no unresolved indirect references. *)
let rec strings_of_array ?(hex=false) f changetable = function
| [] -> ()
| [x] -> strings_of_pdf ~hex f changetable x
| h::(h'::_ as tail) ->
strings_of_pdf ~hex f changetable h;
begin match h' with
Pdf.Name _ | Pdf.String _ | Pdf.Array _ | Pdf.Dictionary _ -> ()
| _ ->
match h with
Pdf.String _ | Pdf.Array _ | Pdf.Dictionary _ -> ()
| _ -> f (WString " ")
end;
strings_of_array ~hex f changetable tail
and strings_of_dictionary ?(hex=false) f changetable = function
| [] -> ()
| [(k, v)] ->
f (WString (make_pdf_name k));
begin match v with
Pdf.Name _ | Pdf.String _ | Pdf.Array _ | Pdf.Dictionary _ -> ()
| _ -> f (WString " ")
end;
strings_of_pdf ~hex:(hex && k = "/ID") f changetable v
| (k, v)::t ->
f (WString (make_pdf_name k));
begin match v with
Pdf.Name _ | Pdf.String _ | Pdf.Array _ | Pdf.Dictionary _ -> ()
| _ -> f (WString " ")
end;
strings_of_pdf ~hex:(hex && k = "/ID") f changetable v;
strings_of_dictionary ~hex f changetable t
and strings_of_pdf ?(hex=false) f changetable = function
| Pdf.Null -> f (WString "null")
| Pdf.Boolean b -> f (WString (string_of_bool b))
| Pdf.Integer n -> f (WString (string_of_int n))
| Pdf.Real r -> f (WString (format_real r))
| Pdf.String s ->
if hex
then f (WString (make_hex_pdf_string s))
else f (WString (make_pdf_string s))
| Pdf.Name n -> f (WString (make_pdf_name n))
| Pdf.Array elts ->
f (WString "[");
strings_of_array ~hex f changetable elts;
f (WString "]");
| Pdf.Dictionary entries ->
f (WString "<<");
strings_of_dictionary ~hex f changetable entries;
f (WString ">>");
| Pdf.Stream {contents = (dict, data)} ->
strings_of_pdf ~hex f changetable dict;
f (WString "\010stream\010");
f (WStream data);
f (WString "\010endstream");
| Pdf.Indirect n ->
let n' =
try Hashtbl.find changetable n with Not_found -> n
in
f (WString (string_of_int n'));
f (WString " 0 R")
(* Produce a single string from a PDF object. *)
let b = Buffer.create 100
let string_of_pdf s =
Buffer.clear b;
strings_of_pdf
(function (WString x) -> Buffer.add_string b x | _ -> ())
(Hashtbl.create 0)
s;
Buffer.contents b
let string_of_pdf_including_data s =
begin match s with Pdf.Stream _ -> Pdf.getstream s | _ -> () end;
Buffer.clear b;
strings_of_pdf
(function
| WString x -> Buffer.add_string b x
| WStream stream ->
match stream with
| Got data -> Buffer.add_string b (string_of_bytes data)
| ToGet _ -> Printf.printf "WARNING: toget in string_of_pdf_including_data\n")
(Hashtbl.create 0)
s;
Buffer.contents b
(* Inter-module recursion, for debug *)
let _ = Pdfcrypt.string_of_pdf := string_of_pdf
let _ = Pdfcodec.string_of_pdf := string_of_pdf
let _ = Pdf.string_of_pdf := string_of_pdf
let debug_whole_pdf pdf =
Pdfe.log (Printf.sprintf "trailerdict = %s\n" (string_of_pdf pdf.Pdf.trailerdict));
Pdf.objiter (fun i o -> Pdfe.log (Printf.sprintf "%i = %s\n" i (string_of_pdf o))) pdf
let strings_of_pdf_object f (_, pdfobject) n' changetable =
f (WString (string_of_int n'));
f (WString " 0 obj\n");
strings_of_pdf f changetable pdfobject;
f (WString "\nendobj\n")
(* Output a stream. *)
let output_stream o s =
Pdf.getstream s;
match s with
| Pdf.Stream {contents = _, Pdf.Got arr} ->
if bytes_size arr > 0 then
getinit o arr 0 (bytes_size arr)
| _ -> raise (Pdf.PDFError "output_stream")
(* Encrypting a PDF while writing *)
type encryption_method =
| PDF40bit
| PDF128bit
| AES128bit of bool (* true = encrypt metadata, false = don't. *)
| AES256bit of bool (* as above *)
| AES256bitISO of bool (* as above *)
| AlreadyEncrypted (* Used as a flag to prevent garbage collection *)
type encryption =
{encryption_method : encryption_method;
owner_password : string;
user_password : string;
permissions : Pdfcrypt.permission list}
let crypt_if_necessary pdf = function
| None -> pdf
| Some enc ->
let f =
match enc.encryption_method with
| PDF40bit -> Pdfcrypt.encrypt_pdf_40bit
| PDF128bit -> Pdfcrypt.encrypt_pdf_128bit
| AES128bit em -> Pdfcrypt.encrypt_pdf_AES em
| AES256bit em -> Pdfcrypt.encrypt_pdf_AES256 em
| AES256bitISO em -> Pdfcrypt.encrypt_pdf_AES256ISO em
| AlreadyEncrypted -> fun _ _ _ pdf -> pdf
in
f enc.user_password enc.owner_password enc.permissions pdf
let flatten_W o = function
| WString s -> o.output_string s
| WStream data -> output_stream o (Pdf.Stream {contents = Pdf.Null, data})
(* Functions for object streams. NB no attempt is made to catch objects which
shouldn't be in a stream - this is the responsibility of the caller. *)
let bake_object_streams compress pdf numbers =
iter
(fun (tostream, objects) ->
let data, first =
let output, d = Pdfio.input_output_of_bytes 32000 in
let strings =
map (fun x -> string_of_pdf (Pdf.lookup_obj pdf x) ^ " ") objects
in
iter (Pdf.removeobj pdf) objects;
let lengths = map String.length strings in
let byte_offsets =
0 :: all_but_last (cumulative_sum 0 lengths)
in
iter2
(fun o boff ->
output.Pdfio.output_string (string_of_int o);
output.Pdfio.output_string " ";
output.Pdfio.output_string (string_of_int boff);
output.Pdfio.output_string " ")
objects
byte_offsets;
let first = output.Pdfio.pos_out () in
iter output.Pdfio.output_string strings;
(extract_bytes_from_input_output output d, first)
in
let dict =
Pdf.Dictionary
[("/Type", Pdf.Name "/ObjStm");
("/Length", Pdf.Integer (bytes_size data));
("/N", Pdf.Integer (length objects));
("/First", Pdf.Integer first)]
in
let obj = Pdf.Stream {contents = (dict, Pdf.Got data)} in
if compress then Pdfcodec.encode_pdfstream ~only_if_smaller:true pdf Pdfcodec.Flate obj;
Pdf.addobj_given_num pdf (tostream, obj))
numbers
(* Modify PDF to reinstate object streams from the saved hints. Then returns
the xref stream. Hints are now invalid, of course. Numbering scheme:
1...n object streams
n+1...m objects in object streams
m+1...p objects not in object streams
p+1 xref stream *)
let reinstate_object_streams compress we_will_be_encrypting pdf =
(* Adobe Reader can't cope with the document catalog being in a stream in an
encrypted file, despite the ISO standard clearly allowing it. Make sure that,
if we're encrypting, we remove any existing hint *)
if we_will_be_encrypting then
Hashtbl.remove pdf.Pdf.objects.Pdf.object_stream_ids pdf.Pdf.root;
(* Build stream_objnum (streamnum, objects_for_this_stream) pairs. Take
account of missing objects! *)
let objects_for_streams =
let table = null_hash ()
and keys = null_hash () in
Hashtbl.iter
(fun objnum instream ->
if not (Hashtbl.mem keys instream) then
Hashtbl.add keys instream ();
Hashtbl.add table instream objnum)
pdf.Pdf.objects.Pdf.object_stream_ids;
let lists = ref [] in
Hashtbl.iter
(fun instream _ ->
lists =| (instream, Hashtbl.find_all table instream))
keys;
!lists
in
(* The nonstream objects are any not included in the objects_for_streams *)
let nonstream_objects =
let all_in_stream = null_hash () in
iter
(fun x -> Hashtbl.add all_in_stream x ())
(flatten (map snd objects_for_streams));
option_map
(fun x -> if not (Hashtbl.mem all_in_stream x) then Some x else None)
(Pdf.objnumbers pdf)
in
(* Now renumber the PDF such that we have (1...n, [n + 1....m]) used for the
and renumber the nonstream objects to (m + 1).... Also renumber
objects_for_streams and nonstream_objects *)
let n = length objects_for_streams in
let m = n + sum (map length (map snd objects_for_streams)) in
let changetable = null_hash () in
(* Add all the objects_for_streams *)
iter2
(Hashtbl.add changetable)
(map fst objects_for_streams)
(indx objects_for_streams);
(* Add all the changes for the objects within streams *)
let x = flatten (map snd objects_for_streams) in
iter2 (Hashtbl.add changetable) x (indxn (n + 1) x);
(* Add all the changes for the nonstream objects *)
iter2
(Hashtbl.add changetable)
nonstream_objects
(indxn (m + 1) nonstream_objects);
let pdf' = Pdf.renumber changetable pdf in
pdf.Pdf.root <- pdf'.Pdf.root;
pdf.Pdf.objects <- pdf'.Pdf.objects;
pdf.Pdf.trailerdict <- pdf'.Pdf.trailerdict;
(* Apply the changes to objects_for_streams *)
let renumbered_objects_for_streams =
combine
(indx (map (Hashtbl.find changetable) (map fst objects_for_streams)))
(map_lol (Hashtbl.find changetable) (map snd objects_for_streams))
in
(* Now build the object streams and bake them into the PDF *)
bake_object_streams compress pdf renumbered_objects_for_streams;
renumbered_objects_for_streams
(* Build the xref stream from collected data. The input xref positions 1..n and
m+1...p. We build xreferences to
a) The 1...n ones from xrefs
b) The n+1...m ones from renumbered_objects_for_streams
c) The m+1...p ones from xrefs
This stream is then returned - it will be written as object p + 1. *)
(* Maximum bytes required to represent the numbers in a list *)
let max_bytes_required l =
if l = [] then raise (Failure "max_bytes_required") else
let r = ref (fold_left max min_int l)
and b = ref 0 in
while let v = !r > 0 in r := !r lsr 8; v do b += 1 done;
max 1 !b
(* Output nbytes bytes from x, highest byte first to the list reference given *)
let output_bytes nbytes x o =
for pos = nbytes - 1 downto 0 do
o.output_byte ((x land (255 lsl (pos * 8))) lsr (pos * 8))
done
let make_xref_stream pdf xrefs renumbered_objects_for_streams =
let entries = ref [(0, 65535, 0)] in
(* 1...n ones from xrefs *)
let type1s, type1s_tranche2 =
cleave xrefs (length renumbered_objects_for_streams)
in
entries =@ rev (map (fun x -> (1, x, 0)) type1s);
(* n+1...m ones from renumbered_objects_for_streams *)
iter
(fun (snum, objnums) ->
entries =@ rev (map (fun i -> (2, snum, i)) (indx0 objnums)))
renumbered_objects_for_streams;
(* m+1...p ones from xrefs *)
entries =@ rev (map (fun x -> (1, x, 0)) type1s_tranche2);
let w1 = max_bytes_required (map (fun (x, _, _) -> x) !entries)
and w2 = max_bytes_required (map (fun (_, x, _) -> x) !entries)
and w3 = max_bytes_required (map (fun (_, _, x) -> x) !entries) in
let data =
let o, bytes = Pdfio.input_output_of_bytes 4096 in
iter
(function (typ, a, b) ->
output_bytes w1 typ o;
output_bytes w2 a o;
output_bytes w3 b o)
(rev !entries);
Pdfio.extract_bytes_from_input_output o bytes
in
let dict =
Pdf.Dictionary
(fold_right
(fun (k, v) d -> add k v d)
[("/Type", Pdf.Name "/XRef");
("/Root", Pdf.Indirect pdf.Pdf.root);
("/Size", Pdf.Integer (length !entries));
("/W",
Pdf.Array [Pdf.Integer w1; Pdf.Integer w2; Pdf.Integer w3]);
("/Length", Pdf.Integer (bytes_size data))]
(match pdf.Pdf.trailerdict with
Pdf.Dictionary d -> d
| _ -> []))
in
let xrefstream = Pdf.Stream {contents = (dict, Pdf.Got data)} in
Pdfcodec.encode_pdfstream
~only_if_smaller:true
pdf
Pdfcodec.Flate
~predictor:Pdfcodec.PNGUp
~predictor_columns:(w1 + w2 + w3)
xrefstream;
xrefstream
(* Build hints for object streams from nothing, optionally preserving existing
streams. *)
let generate_object_stream_hints we_will_be_encrypting pdf preserve_existing =
if not preserve_existing then
Hashtbl.clear pdf.Pdf.objects.Pdf.object_stream_ids;
(* Adobe Reader can't cope with the document catalog being in a stream in an
encrypted file, despite the ISO standard clearly allowing it. Make sure that,
if we're encrypting, we remove any existing hint *)
if we_will_be_encrypting then
Hashtbl.remove pdf.Pdf.objects.Pdf.object_stream_ids pdf.Pdf.root;
let biggest_hint =
max
(fold_left
max
min_int
(map snd (list_of_hashtbl pdf.Pdf.objects.Pdf.object_stream_ids)))
0
in
let possibles =
option_map
(fun x ->
if not (Hashtbl.mem pdf.Pdf.objects.Pdf.object_stream_ids x)
then Some x
else None)
(Pdf.objnumbers pdf)
in
let for_streams, indirect_lengths =
let indirect_lengths = null_hash () in
(option_map
(fun x ->
match Pdf.lookup_obj pdf x with
| Pdf.Stream {contents = (Pdf.Dictionary d, _)} ->
begin
begin match lookup "/Length" d with
| Some (Pdf.Indirect i) ->
Hashtbl.add indirect_lengths i ()
| _ -> ()
end;
None
end
| _ -> Some x)
possibles,
indirect_lengths)
in
(* Remove indirect lengths and catalog. *)
let final =
option_map
(fun x ->
if
Hashtbl.mem indirect_lengths x ||
(x = pdf.Pdf.root && we_will_be_encrypting)
then
None
else
Some x)
for_streams
in
let groups = splitinto 250 (sort compare final) in
iter2
(fun items groupnum ->
iter
(fun i ->
Hashtbl.add
pdf.Pdf.objects.Pdf.object_stream_ids i groupnum)
items)
groups
(indxn (biggest_hint + 1) groups)
(* Used when recrypting *)
let dummy_encryption =
{encryption_method = AlreadyEncrypted;
owner_password = "";
user_password = "";
permissions = []}
(* Flatten a PDF document to an Pdfio.output. *)
let pdf_to_output
?(preserve_objstm = false) ?(generate_objstm = false)
?(compress_objstm = true) ?(recrypt = None) encrypt mk_id pdf o
=
if mk_id then Pdf.change_id pdf (string_of_float (Random.float 1.));
let renumbered_objects_for_streams, preserve_objstm =
if generate_objstm then
generate_object_stream_hints
(match encrypt with Some _ -> true | _ -> false) pdf preserve_objstm;
if
(preserve_objstm || generate_objstm) &&
Hashtbl.length pdf.Pdf.objects.Pdf.object_stream_ids > 0
then
(reinstate_object_streams
compress_objstm
(match encrypt with Some _ -> true | _ ->
match recrypt with Some _ -> true | _ -> false)
pdf,
true)
else
([], false) (* Weren't asked to preserve, or nothing to put in streams *)
in
let encrypt =
match recrypt with
None -> encrypt
| Some _ -> Some dummy_encryption
in
let pdf =
if preserve_objstm || generate_objstm then pdf else
begin match encrypt with
| Some e when e.encryption_method = AlreadyEncrypted ->
pdf (* Already been renumbered *)
| Some _ ->
(* Need to renumber before encrypting.
Will remove once encryption-on-demand-on-writing is done...*)
Pdf.renumber (Pdf.changes pdf) pdf
| _ -> pdf
end
in
let pdf =
match recrypt with
None -> pdf
| Some pw ->
Pdfcrypt.recrypt_pdf
~renumber:(not (preserve_objstm || generate_objstm)) pdf pw
in
let pdf = crypt_if_necessary pdf encrypt in
o.output_string (header pdf);
let xrefs = ref []
and objiter =
if Pdfcrypt.is_encrypted pdf || preserve_objstm || generate_objstm
then Pdf.objiter_inorder
else Pdf.objiter
and changetable =
if Pdfcrypt.is_encrypted pdf || preserve_objstm || generate_objstm
then Hashtbl.create 0
else Pdf.changes pdf
and currobjnum = ref 1
in
objiter
(fun ob p ->
xrefs =| o.pos_out ();
strings_of_pdf_object
(flatten_W o) (ob, p)
(if preserve_objstm then ob else !currobjnum) changetable;
incr currobjnum)
pdf;
let xrefstart = o.pos_out () in
if preserve_objstm || generate_objstm then
begin
let xrefstream =
make_xref_stream pdf (rev !xrefs) renumbered_objects_for_streams
in
let thisnum =
match Pdf.lookup_direct pdf "/Size" xrefstream with
| Some (Pdf.Integer i) -> i
| _ -> failwith "bad xref stream generated\n"
in
o.output_string (string_of_int thisnum);
o.output_string " 0 obj\n";
strings_of_pdf ~hex:true (flatten_W o) changetable xrefstream;
o.output_string "\nendobj\n";
o.output_string "startxref\n";
o.output_string (string_of_int xrefstart);
o.output_string "\n%%EOF\n"
end
else
begin
write_xrefs (rev !xrefs) o;
o.output_string "trailer\n";
let trailerdict' =
match pdf.Pdf.trailerdict with
| Pdf.Dictionary trailerdict ->
Pdf.Dictionary
(add "/Size" (Pdf.Integer (length !xrefs + 1))
(add "/Root" (Pdf.Indirect pdf.Pdf.root) trailerdict))
| _ ->
raise
(Pdf.PDFError
"Pdf.pdf_to_output: Bad trailer dictionary")
in
strings_of_pdf ~hex:true (flatten_W o) changetable trailerdict';
o.output_string "\nstartxref\n";
o.output_string (string_of_int xrefstart);
o.output_string "\n%%EOF\n"
end
(* Write a PDF to a channel. Don't use mk_id when the file is encrypted.*)
let pdf_to_channel
?(preserve_objstm = false) ?(generate_objstm = false)
?(compress_objstm = true) ?(recrypt = None)
encrypt mk_id pdf ch
=
pdf_to_output
~preserve_objstm ~generate_objstm ~compress_objstm ~recrypt
encrypt mk_id pdf (output_of_channel ch)
(* Similarly to a named file. If mk_id is set, the /ID entry in the document's
trailer dictionary is updated using the current date and time and the filename.
Don't use mk_id when the file is encrypted. If [preserve_objstm] is set,
existing object streams will be preserved. If [generate_objstm] is set, new
ones will be generated in addition. To get totally fresh object streams, set
[preserve_objstm=false, generate_objstm=true]. *)
let pdf_to_file_options
?(preserve_objstm = false) ?(generate_objstm = false)
?(compress_objstm = true) ?(recrypt = None)
encrypt mk_id pdf f
=
if mk_id then Pdf.change_id pdf f;
let ch = open_out_bin f in
try
pdf_to_channel
~preserve_objstm ~generate_objstm ~compress_objstm ~recrypt
encrypt false pdf ch;
close_out ch
with
e -> close_out ch; raise e
let pdf_to_file pdf f =
pdf_to_file_options
~preserve_objstm:true ~generate_objstm:false ~compress_objstm:true
None true pdf f