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
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
|
/* Copyright (C) 1996, 2000 Aladdin Enterprises. All rights reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied,
modified or distributed except as expressly authorized under the terms
of the license contained in the file LICENSE in this distribution.
For more information about licensing, please refer to
http://www.ghostscript.com/licensing/. For information on
commercial licensing, go to http://www.artifex.com/licensing/ or
contact Artifex Software, Inc., 101 Lucas Valley Road #110,
San Rafael, CA 94903, U.S.A., +1(415)492-9861.
*/
/*$RCSfile$ $Revision$ */
/* PDF-writing driver */
#include "fcntl_.h"
#include "memory_.h"
#include "string_.h"
#include "time_.h"
#include "unistd_.h"
#include "gx.h"
#include "gp.h" /* for gp_get_realtime */
#include "gserrors.h"
#include "gxdevice.h"
#include "gdevpdfx.h"
#include "gdevpdff.h"
#include "gdevpdfg.h" /* only for pdf_reset_graphics */
#include "gdevpdfo.h"
/* Define the default language level and PDF compatibility level. */
/* Acrobat 4 (PDF 1.3) is the default. */
#define PSDF_VERSION_INITIAL psdf_version_ll3
#define PDF_COMPATIBILITY_LEVEL_INITIAL 1.3
/* Define the size of internal stream buffers. */
/* (This is not a limitation, it only affects performance.) */
#define sbuf_size 512
/* GC descriptors */
private_st_pdf_page();
gs_private_st_element(st_pdf_page_element, pdf_page_t, "pdf_page_t[]",
pdf_page_elt_enum_ptrs, pdf_page_elt_reloc_ptrs,
st_pdf_page);
private_st_device_pdfwrite();
/* GC procedures */
private
ENUM_PTRS_WITH(device_pdfwrite_enum_ptrs, gx_device_pdf *pdev)
{
index -= gx_device_pdf_num_ptrs + gx_device_pdf_num_strings;
if (index < PDF_NUM_STD_FONTS)
ENUM_RETURN(pdev->std_fonts[index].font);
index -= PDF_NUM_STD_FONTS;
if (index < PDF_NUM_STD_FONTS)
ENUM_RETURN(pdev->std_fonts[index].pfd);
index -= PDF_NUM_STD_FONTS;
if (index < NUM_RESOURCE_TYPES * NUM_RESOURCE_CHAINS)
ENUM_RETURN(pdev->resources[index / NUM_RESOURCE_CHAINS].chains[index % NUM_RESOURCE_CHAINS]);
index -= NUM_RESOURCE_TYPES * NUM_RESOURCE_CHAINS;
if (index <= pdev->outline_depth)
ENUM_RETURN(pdev->outline_levels[index].first.action);
index -= pdev->outline_depth + 1;
if (index <= pdev->outline_depth)
ENUM_RETURN(pdev->outline_levels[index].last.action);
index -= pdev->outline_depth + 1;
ENUM_PREFIX(st_device_psdf, 0);
}
#define e1(i,elt) ENUM_PTR(i, gx_device_pdf, elt);
gx_device_pdf_do_ptrs(e1)
#undef e1
#define e1(i,elt) ENUM_STRING_PTR(i + gx_device_pdf_num_ptrs, gx_device_pdf, elt);
gx_device_pdf_do_strings(e1)
#undef e1
ENUM_PTRS_END
private RELOC_PTRS_WITH(device_pdfwrite_reloc_ptrs, gx_device_pdf *pdev)
{
RELOC_PREFIX(st_device_psdf);
#define r1(i,elt) RELOC_PTR(gx_device_pdf,elt);
gx_device_pdf_do_ptrs(r1)
#undef r1
#define r1(i,elt) RELOC_STRING_PTR(gx_device_pdf,elt);
gx_device_pdf_do_strings(r1)
#undef r1
{
int i, j;
for (i = 0; i < PDF_NUM_STD_FONTS; ++i) {
RELOC_PTR(gx_device_pdf, std_fonts[i].font);
RELOC_PTR(gx_device_pdf, std_fonts[i].pfd);
}
for (i = 0; i < NUM_RESOURCE_TYPES; ++i)
for (j = 0; j < NUM_RESOURCE_CHAINS; ++j)
RELOC_PTR(gx_device_pdf, resources[i].chains[j]);
for (i = 0; i <= pdev->outline_depth; ++i) {
RELOC_PTR(gx_device_pdf, outline_levels[i].first.action);
RELOC_PTR(gx_device_pdf, outline_levels[i].last.action);
}
}
}
RELOC_PTRS_END
/* Even though device_pdfwrite_finalize is the same as gx_device_finalize, */
/* we need to implement it separately because st_composite_final */
/* declares all 3 procedures as private. */
private void
device_pdfwrite_finalize(void *vpdev)
{
gx_device_finalize(vpdev);
}
/* Driver procedures */
private dev_proc_open_device(pdf_open);
private dev_proc_output_page(pdf_output_page);
private dev_proc_close_device(pdf_close);
/* Driver procedures defined in other files are declared in gdevpdfx.h. */
#ifndef X_DPI
# define X_DPI 720
#endif
#ifndef Y_DPI
# define Y_DPI 720
#endif
const gx_device_pdf gs_pdfwrite_device =
{std_device_dci_type_body(gx_device_pdf, 0, "pdfwrite",
&st_device_pdfwrite,
DEFAULT_WIDTH_10THS * X_DPI / 10,
DEFAULT_HEIGHT_10THS * Y_DPI / 10,
X_DPI, Y_DPI,
3, 24, 255, 255, 256, 256),
{pdf_open,
gx_upright_get_initial_matrix,
NULL, /* sync_output */
pdf_output_page,
pdf_close,
gx_default_rgb_map_rgb_color,
gx_default_rgb_map_color_rgb,
gdev_pdf_fill_rectangle,
NULL, /* tile_rectangle */
gdev_pdf_copy_mono,
gdev_pdf_copy_color,
NULL, /* draw_line */
NULL, /* get_bits */
gdev_pdf_get_params,
gdev_pdf_put_params,
NULL, /* map_cmyk_color */
NULL, /* get_xfont_procs */
NULL, /* get_xfont_device */
NULL, /* map_rgb_alpha_color */
gx_page_device_get_page_device,
NULL, /* get_alpha_bits */
NULL, /* copy_alpha */
NULL, /* get_band */
NULL, /* copy_rop */
gdev_pdf_fill_path,
gdev_pdf_stroke_path,
gdev_pdf_fill_mask,
NULL, /* fill_trapezoid */
NULL, /* fill_parallelogram */
NULL, /* fill_triangle */
NULL, /* draw_thin_line */
NULL, /* begin_image */
NULL, /* image_data */
NULL, /* end_image */
gdev_pdf_strip_tile_rectangle,
NULL, /* strip_copy_rop */
NULL, /* get_clipping_box */
gdev_pdf_begin_typed_image,
NULL, /* get_bits_rectangle */
NULL, /* map_color_rgb_alpha */
NULL, /* create_compositor */
NULL, /* get_hardware_params */
gdev_pdf_text_begin
},
psdf_initial_values(PSDF_VERSION_INITIAL, 0 /*false */ ), /* (!ASCII85EncodePages) */
PDF_COMPATIBILITY_LEVEL_INITIAL, /* CompatibilityLevel */
-1, /* EndPage */
1, /* StartPage */
1 /*true*/, /* Optimize */
0 /*false*/, /* ParseDSCCommentsForDocInfo */
1 /*true*/, /* ParseDSCComments */
0 /*false*/, /* EmitDSCWarnings */
0 /*false*/, /* CreateJobTicket */
0 /*false*/, /* PreserveEPSInfo */
1 /*true*/, /* AutoPositionEPSFiles */
1 /*true*/, /* PreserveCopyPage */
0 /*false*/, /* UsePrologue */
0, /* OffOptimizations */
1 /*true*/, /* ReAssignCharacters */
1 /*true*/, /* ReEncodeCharacters */
1, /* FirstObjectNumber */
1 /*true*/, /* CompressFonts */
0 /*false*/, /* is_EPS */
{-1, -1}, /* doc_dsc_info */
{-1, -1}, /* page_dsc_info */
0 /*false*/, /* fill_overprint */
0 /*false*/, /* stroke_overprint */
0, /* overprint_mode */
gs_no_id, /* halftone_id */
{gs_no_id, gs_no_id, gs_no_id, gs_no_id}, /* transfer_ids */
0, /* transfer_not_identity */
gs_no_id, /* black_generation_id */
gs_no_id, /* undercolor_removal_id */
pdf_compress_none, /* compression */
{{0}}, /* xref */
{{0}}, /* asides */
{{0}}, /* streams */
{{0}}, /* pictures */
0, /* open_font */
0 /*false*/, /* use_open_font */
0, /* embedded_encoding_id */
-1, /* max_embedded_code */
0, /* random_offset */
0, /* next_id */
0, /* Catalog */
0, /* Info */
0, /* Pages */
0, /* outlines_id */
0, /* next_page */
0, /* contents_id */
PDF_IN_NONE, /* context */
0, /* contents_length_id */
0, /* contents_pos */
NoMarks, /* procsets */
{pdf_text_state_default}, /* text */
{{0}}, /* std_fonts */
{0}, /* space_char_ids */
{{0}}, /* text_rotation */
0, /* pages */
0, /* num_pages */
1, /* used_mask */
{
{
{0}}}, /* resources */
{0}, /* cs_Patterns */
0, /* last_resource */
{
{
{0}}}, /* outline_levels */
0, /* outline_depth */
0, /* closed_outline_depth */
0, /* outlines_open */
0, /* articles */
0, /* Dests */
0, /* named_objects */
0 /* open_graphics */
};
/* ---------------- Device open/close ---------------- */
/* Close and remove temporary files. */
private int
pdf_close_temp_file(gx_device_pdf *pdev, pdf_temp_file_t *ptf, int code)
{
int err = 0;
FILE *file = ptf->file;
/*
* ptf->strm == 0 or ptf->file == 0 is only possible if this procedure
* is called to clean up during initialization failure, but ptf->strm
* might not be open if it was finalized before the device was closed.
*/
if (ptf->strm) {
if (s_is_valid(ptf->strm)) {
sflush(ptf->strm);
/* Prevent freeing the stream from closing the file. */
ptf->strm->file = 0;
} else
ptf->file = file = 0; /* file was closed by finalization */
gs_free_object(pdev->pdf_memory, ptf->strm_buf,
"pdf_close_temp_file(strm_buf)");
ptf->strm_buf = 0;
gs_free_object(pdev->pdf_memory, ptf->strm,
"pdf_close_temp_file(strm)");
ptf->strm = 0;
}
if (file) {
err = ferror(file) | fclose(file);
unlink(ptf->file_name);
ptf->file = 0;
}
ptf->save_strm = 0;
return
(code < 0 ? code : err != 0 ? gs_note_error(gs_error_ioerror) : code);
}
private int
pdf_close_files(gx_device_pdf * pdev, int code)
{
code = pdf_close_temp_file(pdev, &pdev->pictures, code);
code = pdf_close_temp_file(pdev, &pdev->streams, code);
code = pdf_close_temp_file(pdev, &pdev->asides, code);
return pdf_close_temp_file(pdev, &pdev->xref, code);
}
/* Reset the state of the current page. */
private void
pdf_reset_page(gx_device_pdf * pdev)
{
pdev->page_dsc_info = gs_pdfwrite_device.page_dsc_info;
pdev->contents_id = 0;
pdf_reset_graphics(pdev);
pdev->procsets = NoMarks;
memset(pdev->cs_Patterns, 0, sizeof(pdev->cs_Patterns)); /* simplest to create for each page */
{
static const pdf_text_state_t text_default = {
pdf_text_state_default
};
pdev->text = text_default;
}
}
/* Open a temporary file, with or without a stream. */
private int
pdf_open_temp_file(gx_device_pdf *pdev, pdf_temp_file_t *ptf)
{
char fmode[4];
strcpy(fmode, "w+");
strcat(fmode, gp_fmode_binary_suffix);
ptf->file =
gp_open_scratch_file(gp_scratch_file_name_prefix,
ptf->file_name, fmode);
if (ptf->file == 0)
return_error(gs_error_invalidfileaccess);
return 0;
}
private int
pdf_open_temp_stream(gx_device_pdf *pdev, pdf_temp_file_t *ptf)
{
int code = pdf_open_temp_file(pdev, ptf);
if (code < 0)
return code;
ptf->strm = s_alloc(pdev->pdf_memory, "pdf_open_temp_stream(strm)");
if (ptf->strm == 0)
return_error(gs_error_VMerror);
ptf->strm_buf = gs_alloc_bytes(pdev->pdf_memory, sbuf_size,
"pdf_open_temp_stream(strm_buf)");
if (ptf->strm_buf == 0) {
gs_free_object(pdev->pdf_memory, ptf->strm,
"pdf_open_temp_stream(strm)");
ptf->strm = 0;
return_error(gs_error_VMerror);
}
swrite_file(ptf->strm, ptf->file, ptf->strm_buf, sbuf_size);
return 0;
}
/* Initialize the IDs allocated at startup. */
void
pdf_initialize_ids(gx_device_pdf * pdev)
{
gs_param_string nstr;
pdev->next_id = pdev->FirstObjectNumber;
/* Initialize the Catalog. */
param_string_from_string(nstr, "{Catalog}");
pdf_create_named_dict(pdev, &nstr, &pdev->Catalog, 0L);
/* Initialize the Info dictionary. */
param_string_from_string(nstr, "{DocInfo}");
pdf_create_named_dict(pdev, &nstr, &pdev->Info, 0L);
{
char buf[PDF_MAX_PRODUCER];
pdf_store_default_Producer(buf);
cos_dict_put_c_key_string(pdev->Info, "/Producer", (byte *)buf,
strlen(buf));
}
/*
* Acrobat Distiller sets CreationDate and ModDate to the current
* date and time, rather than (for example) %%CreationDate from the
* PostScript file. We think this is wrong, but we do the same.
*/
{
struct tm tms;
time_t t;
char buf[1+2+4+2+2+2+2+2+2+1+1]; /* (D:yyyymmddhhmmss)\0 */
time(&t);
tms = *localtime(&t);
sprintf(buf,
"(D:%04d%02d%02d%02d%02d%02d)",
tms.tm_year + 1900, tms.tm_mon + 1, tms.tm_mday,
tms.tm_hour, tms.tm_min, tms.tm_sec);
cos_dict_put_c_key_string(pdev->Info, "/CreationDate", (byte *)buf,
strlen(buf));
cos_dict_put_c_key_string(pdev->Info, "/ModDate", (byte *)buf,
strlen(buf));
}
/* Allocate the root of the pages tree. */
pdf_create_named_dict(pdev, NULL, &pdev->Pages, 0L);
}
#ifdef __DECC
/* The ansi alias rules are violated in this next routine. Tell the compiler
to ignore this.
*/
#pragma optimize save
#pragma optimize ansi_alias=off
#endif
/* Update the color mapping procedures after setting ProcessColorModel. */
void
pdf_set_process_color_model(gx_device_pdf * pdev)
{
gx_color_index color = 0; /* black */
switch (pdev->color_info.num_components) {
case 1:
set_dev_proc(pdev, map_rgb_color, gx_default_gray_map_rgb_color);
set_dev_proc(pdev, map_color_rgb, gx_default_gray_map_color_rgb);
set_dev_proc(pdev, map_cmyk_color, NULL);
break;
case 3:
set_dev_proc(pdev, map_rgb_color, gx_default_rgb_map_rgb_color);
set_dev_proc(pdev, map_color_rgb, gx_default_rgb_map_color_rgb);
set_dev_proc(pdev, map_cmyk_color, NULL);
break;
case 4:
set_dev_proc(pdev, map_rgb_color, NULL);
set_dev_proc(pdev, map_color_rgb, cmyk_8bit_map_color_rgb);
/* possible problems with aliassing on next statement */
set_dev_proc(pdev, map_cmyk_color, cmyk_8bit_map_cmyk_color);
color = gx_map_cmyk_color((gx_device *)pdev,
frac2cv(frac_0), frac2cv(frac_0),
frac2cv(frac_0), frac2cv(frac_1));
break;
default: /* can't happen */
DO_NOTHING;
}
color_set_pure(&pdev->fill_color, color);
color_set_pure(&pdev->stroke_color, color);
}
#ifdef __DECC
#pragma optimize restore
#endif
/*
* Reset the text state parameters to initial values. This isn't a very
* good place for this procedure, but the alternatives seem worse.
*/
void
pdf_reset_text(gx_device_pdf * pdev)
{
pdev->text.character_spacing = 0;
pdev->text.font = NULL;
pdev->text.size = 0;
pdev->text.word_spacing = 0;
pdev->text.leading = 0;
pdev->text.use_leading = false;
pdev->text.render_mode = 0;
}
/*
* Read some random bytes from an external source of randomness, if
* available. Return the number of bytes read.
*/
private int
pdf_read_random(byte *data, int nbytes)
{
/*
* If we're on a system that provides /dev/random, that's the best
* source of good random bits. However, due to an apparent bug in
* Solaris 8, reading from /dev/random can cause blocking for
* hours (! - reported by a user), so we require a non-blocking
* read.
*/
int count = 0;
#ifdef O_NONBLOCK
static const char *const randoms[2] = {"/dev/urandom", "/dev/random"};
int i;
for (i = 0; i < countof(randoms); ++i) {
int rfd = open(randoms[i], O_RDONLY | O_NONBLOCK);
if (rfd < 0)
continue;
count = read(rfd, data, nbytes);
close(rfd);
if (count == nbytes)
break;
}
#endif
return count;
}
/* Open the device. */
private int
pdf_open(gx_device * dev)
{
gx_device_pdf *const pdev = (gx_device_pdf *) dev;
gs_memory_t *mem = pdev->pdf_memory = gs_memory_stable(pdev->memory);
int code;
if ((code = pdf_open_temp_file(pdev, &pdev->xref)) < 0 ||
(code = pdf_open_temp_stream(pdev, &pdev->asides)) < 0 ||
(code = pdf_open_temp_stream(pdev, &pdev->streams)) < 0 ||
(code = pdf_open_temp_stream(pdev, &pdev->pictures)) < 0
)
goto fail;
code = gdev_vector_open_file((gx_device_vector *) pdev, sbuf_size);
if (code < 0)
goto fail;
gdev_vector_init((gx_device_vector *) pdev);
pdev->vec_procs = &pdf_vector_procs;
pdev->fill_options = pdev->stroke_options = gx_path_type_optimize;
/* Set in_page so the vector routines won't try to call */
/* any vector implementation procedures. */
pdev->in_page = true;
/*
* pdf_initialize_ids allocates some named objects, so we must
* initialize the named objects list now.
*/
pdev->named_objects = cos_dict_alloc(pdev, "pdf_open(named_objects)");
pdf_initialize_ids(pdev);
pdev->outlines_id = 0;
pdev->next_page = 0;
memset(pdev->space_char_ids, 0, sizeof(pdev->space_char_ids));
pdev->pages =
gs_alloc_struct_array(mem, initial_num_pages, pdf_page_t,
&st_pdf_page_element, "pdf_open(pages)");
if (pdev->pages == 0) {
code = gs_error_VMerror;
goto fail;
}
memset(pdev->pages, 0, initial_num_pages * sizeof(pdf_page_t));
pdev->num_pages = initial_num_pages;
{
int i, j;
for (i = 0; i < NUM_RESOURCE_TYPES; ++i)
for (j = 0; j < NUM_RESOURCE_CHAINS; ++j)
pdev->resources[i].chains[j] = 0;
}
pdev->outline_levels[0].first.id = 0;
pdev->outline_levels[0].left = max_int;
pdev->outline_levels[0].first.action = 0;
pdev->outline_levels[0].last.action = 0;
pdev->outline_depth = 0;
pdev->closed_outline_depth = 0;
pdev->outlines_open = 0;
pdev->articles = 0;
pdev->Dests = 0;
/* named_objects was initialized above */
pdev->open_graphics = 0;
pdf_reset_page(pdev);
/*
* We don't use rand() for generating subset prefixes, because it isn't
* random across runs (always starts at 1). We don't seed rand() from a
* one-time source of randomness, because a library should never assume
* it can modify program-global state. We don't use nrand48(), because
* it isn't standard enough. So what we do is generate a one-time
* random offset, and combine that with the sequence produced by rand().
*/
{
int count = pdf_read_random((byte *)&pdev->random_offset,
sizeof(pdev->random_offset));
if (count != sizeof(pdev->random_offset)) {
/* Hope that the clock is random enough. */
long tm[2];
gp_get_realtime(tm);
pdev->random_offset = tm[0] + tm[1];
}
}
return 0;
fail:
return pdf_close_files(pdev, code);
}
/* Detect I/O errors. */
private int
pdf_ferror(gx_device_pdf *pdev)
{
fflush(pdev->file);
fflush(pdev->xref.file);
sflush(pdev->strm);
sflush(pdev->asides.strm);
sflush(pdev->streams.strm);
sflush(pdev->pictures.strm);
return ferror(pdev->file) || ferror(pdev->xref.file) ||
ferror(pdev->asides.file) || ferror(pdev->streams.file) ||
ferror(pdev->pictures.file);
}
/* Compute the dominant text orientation of a page. */
private int
pdf_dominant_rotation(const pdf_text_rotation_t *ptr)
{
int i, imax = 0;
long max_count = ptr->counts[0];
static const int angles[] = { pdf_text_rotation_angle_values };
for (i = 1; i < countof(ptr->counts); ++i) {
long count = ptr->counts[i];
if (count > max_count)
imax = i, max_count = count;
}
return angles[imax];
}
/* Print a Rotate command for an orientation specified by a DSC comment. */
private void
pdf_print_dsc_rotate(stream *s, const gs_point *pbox, int orient)
{
int ori = orient;
if (pbox->x > pbox->y) {
/*
* The page is in landscape format. Adjust the rotation
* accordingly.
*/
ori ^= 1;
}
pprintd1(s, "/Rotate %d", ori * 90);
}
private bool
pdf_print_dsc_orientation(stream *s, const gs_point *pbox,
const pdf_page_dsc_info_t *ppdi)
{
if (ppdi->viewing_orientation >= 0) {
pdf_print_dsc_rotate(s, pbox, ppdi->viewing_orientation);
return true;
} else if (ppdi->orientation >= 0) {
pdf_print_dsc_rotate(s, pbox, ppdi->orientation);
return true;
}
return false;
}
/* Close the current page. */
private int
pdf_close_page(gx_device_pdf * pdev)
{
int page_num = ++(pdev->next_page);
pdf_page_t *page;
int code;
/*
* If the very first page is blank, we need to open the document
* before doing anything else.
*/
pdf_open_document(pdev);
pdf_close_contents(pdev, true);
/*
* We can't write the page object or the annotations array yet, because
* later pdfmarks might add elements to them. Write the other objects
* that the page references, and record what we'll need later.
*
* Start by making sure the pages array element exists.
*/
pdf_page_id(pdev, page_num);
page = &pdev->pages[page_num - 1];
page->MediaBox.x = pdev->MediaSize[0];
page->MediaBox.y = pdev->MediaSize[1];
page->contents_id = pdev->contents_id;
/* pdf_store_page_resources sets procsets, resource_ids[]. */
code = pdf_store_page_resources(pdev, page);
if (code < 0)
return code;
/* Write out Functions. */
pdf_write_resource_objects(pdev, resourceFunction);
/*
* When Acrobat Reader 3 prints a file containing a Type 3 font with a
* non-standard Encoding, it apparently only emits the subset of the
* font actually used on the page. Thus, if the "Download Fonts Once"
* option is selected, characters not used on the page where the font
* first appears will not be defined, and hence will print as blank if
* used on subsequent pages. Thus, we can't allow a Type 3 font to
* add additional characters on subsequent pages.
*/
if (pdev->CompatibilityLevel <= 1.2)
pdev->use_open_font = false;
/* Accumulate text rotation. */
page->text_rotation.Rotate =
(pdev->params.AutoRotatePages == arp_PageByPage ?
pdf_dominant_rotation(&page->text_rotation) : -1);
{
int i;
for (i = 0; i < countof(page->text_rotation.counts); ++i)
pdev->text_rotation.counts[i] += page->text_rotation.counts[i];
}
/* Record information from DSC comments. */
page->dsc_info = pdev->page_dsc_info;
if (page->dsc_info.orientation < 0)
page->dsc_info.orientation = pdev->doc_dsc_info.orientation;
if (page->dsc_info.bounding_box.p.x >= page->dsc_info.bounding_box.q.x ||
page->dsc_info.bounding_box.p.y >= page->dsc_info.bounding_box.q.y
)
page->dsc_info.bounding_box = pdev->doc_dsc_info.bounding_box;
/* Finish up. */
pdf_reset_page(pdev);
return (pdf_ferror(pdev) ? gs_note_error(gs_error_ioerror) : 0);
}
/* Write the page object. */
private double
round_box_coord(floatp xy)
{
return (int)(xy * 100 + 0.5) / 100.0;
}
private int
pdf_write_page(gx_device_pdf *pdev, int page_num)
{
long page_id = pdf_page_id(pdev, page_num);
pdf_page_t *page = &pdev->pages[page_num - 1];
stream *s;
pdf_open_obj(pdev, page_id);
s = pdev->strm;
pprintg2(s, "<</Type/Page/MediaBox [0 0 %g %g]\n",
round_box_coord(page->MediaBox.x),
round_box_coord(page->MediaBox.y));
/*
* In decreasing priority order, check for %%PageViewingOrientation,
* %%PageOrientation, and AutoRotatePages == /PageByPage.
*/
if (!pdf_print_dsc_orientation(s, &page->MediaBox, &page->dsc_info))
if (page->text_rotation.Rotate >= 0)
pprintd1(s, "/Rotate %d", page->text_rotation.Rotate);
pprintld1(s, "/Parent %ld 0 R\n", pdev->Pages->id);
stream_puts(s, "/Resources<</ProcSet[/PDF");
if (page->procsets & ImageB)
stream_puts(s, " /ImageB");
if (page->procsets & ImageC)
stream_puts(s, " /ImageC");
if (page->procsets & ImageI)
stream_puts(s, " /ImageI");
if (page->procsets & Text)
stream_puts(s, " /Text");
stream_puts(s, "]\n");
{
int i;
for (i = 0; i < countof(page->resource_ids); ++i)
if (page->resource_ids[i]) {
stream_puts(s, pdf_resource_type_names[i]);
pprintld1(s, " %ld 0 R\n", page->resource_ids[i]);
}
}
stream_puts(s, ">>\n");
/* Write out the annotations array if any. */
if (page->Annots) {
stream_puts(s, "/Annots");
COS_WRITE(page->Annots, pdev);
COS_FREE(page->Annots, "pdf_write_page(Annots)");
page->Annots = 0;
}
/*
* The PDF documentation allows, and this code formerly emitted,
* a Contents entry whose value was an empty array. Acrobat Reader
* 3 and 4 accept this, but Acrobat Reader 5.0 rejects it.
* Fortunately, the Contents entry is optional.
*/
if (page->contents_id != 0)
pprintld1(s, "/Contents %ld 0 R\n", page->contents_id);
/* Write any elements stored by pdfmarks. */
cos_dict_elements_write(page->Page, pdev);
stream_puts(s, ">>\n");
pdf_end_obj(pdev);
return 0;
}
/* Wrap up ("output") a page. */
private int
pdf_output_page(gx_device * dev, int num_copies, int flush)
{
gx_device_pdf *const pdev = (gx_device_pdf *) dev;
int code = pdf_close_page(pdev);
return (code < 0 ? code :
pdf_ferror(pdev) ? gs_note_error(gs_error_ioerror) :
gx_finish_output_page(dev, num_copies, flush));
}
/* Close the device. */
private int
pdf_close(gx_device * dev)
{
gx_device_pdf *const pdev = (gx_device_pdf *) dev;
gs_memory_t *mem = pdev->pdf_memory;
stream *s;
FILE *tfile = pdev->xref.file;
long xref;
long resource_pos;
long Catalog_id = pdev->Catalog->id, Info_id = pdev->Info->id,
Pages_id = pdev->Pages->id;
long Threads_id = 0;
bool partial_page = (pdev->contents_id != 0 && pdev->next_page != 0);
/*
* If this is an EPS file, or if the file didn't end with a showpage for
* some other reason, or if the file has produced no marks at all, we
* need to tidy up a little so as not to produce illegal PDF. However,
* if there is at least one complete page, we discard any leftover
* marks.
*/
if (pdev->next_page == 0)
pdf_open_document(pdev);
if (pdev->contents_id != 0)
pdf_close_page(pdev);
/* Write the page objects. */
{
int i;
for (i = 1; i <= pdev->next_page; ++i)
pdf_write_page(pdev, i);
}
/* Write the font resources and related resources. */
pdf_write_font_resources(pdev);
pdf_write_resource_objects(pdev, resourceCMap);
/* Create the Pages tree. */
pdf_open_obj(pdev, Pages_id);
s = pdev->strm;
stream_puts(s, "<< /Type /Pages /Kids [\n");
/* Omit the last page if it was incomplete. */
if (partial_page)
--(pdev->next_page);
{
int i;
for (i = 0; i < pdev->next_page; ++i)
pprintld1(s, "%ld 0 R\n", pdev->pages[i].Page->id);
}
pprintd1(s, "] /Count %d\n", pdev->next_page);
/*
* In decreasing priority order, check for %%ViewingOrientation,
* %%Orientation, and AutoRotatePages == /All. Use the MediaBox of
* the first page to determine the document's native portrait vs.
* landscape orientation.
*/
{
const pdf_page_t *page = &pdev->pages[0];
if (!pdf_print_dsc_orientation(s, &page->MediaBox,
&pdev->doc_dsc_info))
if (pdev->params.AutoRotatePages == arp_All)
pprintd1(s, "/Rotate %d\n",
pdf_dominant_rotation(&pdev->text_rotation));
}
cos_dict_elements_write(pdev->Pages, pdev);
stream_puts(s, ">>\n");
pdf_end_obj(pdev);
/* Close outlines and articles. */
if (pdev->outlines_id != 0) {
/* depth > 0 is only possible for an incomplete outline tree. */
while (pdev->outline_depth > 0)
pdfmark_close_outline(pdev);
pdfmark_close_outline(pdev);
pdf_open_obj(pdev, pdev->outlines_id);
pprintd1(s, "<< /Count %d", pdev->outlines_open);
pprintld2(s, " /First %ld 0 R /Last %ld 0 R >>\n",
pdev->outline_levels[0].first.id,
pdev->outline_levels[0].last.id);
pdf_end_obj(pdev);
}
if (pdev->articles != 0) {
pdf_article_t *part;
/* Write the remaining information for each article. */
for (part = pdev->articles; part != 0; part = part->next)
pdfmark_write_article(pdev, part);
}
/* Write named destinations. (We can't free them yet.) */
if (pdev->Dests)
COS_WRITE_OBJECT(pdev->Dests, pdev);
/* Write the Catalog. */
/*
* The PDF specification requires Threads to be an indirect object.
* Write the threads now, if any.
*/
if (pdev->articles != 0) {
pdf_article_t *part;
Threads_id = pdf_begin_obj(pdev);
s = pdev->strm;
stream_puts(s, "[ ");
while ((part = pdev->articles) != 0) {
pdev->articles = part->next;
pprintld1(s, "%ld 0 R\n", part->contents->id);
COS_FREE(part->contents, "pdf_close(article contents)");
gs_free_object(mem, part, "pdf_close(article)");
}
stream_puts(s, "]\n");
pdf_end_obj(pdev);
}
pdf_open_obj(pdev, Catalog_id);
s = pdev->strm;
stream_puts(s, "<<");
pprintld1(s, "/Type /Catalog /Pages %ld 0 R\n", Pages_id);
if (pdev->outlines_id != 0)
pprintld1(s, "/Outlines %ld 0 R\n", pdev->outlines_id);
if (Threads_id)
pprintld1(s, "/Threads %ld 0 R\n", Threads_id);
if (pdev->Dests)
pprintld1(s, "/Dests %ld 0 R\n", pdev->Dests->id);
cos_dict_elements_write(pdev->Catalog, pdev);
stream_puts(s, ">>\n");
pdf_end_obj(pdev);
if (pdev->Dests) {
COS_FREE(pdev->Dests, "pdf_close(Dests)");
pdev->Dests = 0;
}
/* Prevent writing special named objects twice. */
pdev->Catalog->id = 0;
/*pdev->Info->id = 0;*/ /* Info should get written */
pdev->Pages->id = 0;
{
int i;
for (i = 0; i < pdev->num_pages; ++i)
if (pdev->pages[i].Page)
pdev->pages[i].Page->id = 0;
}
/*
* Write the definitions of the named objects.
* Note that this includes Form XObjects created by BP/EP, named PS
* XObjects, and eventually images named by NI.
*/
cos_dict_objects_write(pdev->named_objects, pdev);
/* Copy the resources into the main file. */
s = pdev->strm;
resource_pos = stell(s);
sflush(pdev->asides.strm);
{
FILE *rfile = pdev->asides.file;
long res_end = ftell(rfile);
fseek(rfile, 0L, SEEK_SET);
pdf_copy_data(s, rfile, res_end);
}
/* Write the cross-reference section. */
xref = pdf_stell(pdev);
if (pdev->FirstObjectNumber == 1)
pprintld1(s, "xref\n0 %ld\n0000000000 65535 f \n",
pdev->next_id);
else
pprintld2(s, "xref\n0 1\n0000000000 65535 f \n%ld %ld\n",
pdev->FirstObjectNumber,
pdev->next_id - pdev->FirstObjectNumber);
fseek(tfile, 0L, SEEK_SET);
{
long i;
for (i = pdev->FirstObjectNumber; i < pdev->next_id; ++i) {
ulong pos;
char str[21];
fread(&pos, sizeof(pos), 1, tfile);
if (pos & ASIDES_BASE_POSITION)
pos += resource_pos - ASIDES_BASE_POSITION;
sprintf(str, "%010ld 00000 n \n", pos);
stream_puts(s, str);
}
}
/* Write the trailer. */
stream_puts(s, "trailer\n");
pprintld3(s, "<< /Size %ld /Root %ld 0 R /Info %ld 0 R\n",
pdev->next_id, Catalog_id, Info_id);
stream_puts(s, ">>\n");
pprintld1(s, "startxref\n%ld\n%%%%EOF\n", xref);
/* Release the resource records. */
{
pdf_resource_t *pres;
pdf_resource_t *prev;
for (prev = pdev->last_resource; (pres = prev) != 0;) {
prev = pres->prev;
gs_free_object(mem, pres, "pdf_resource_t");
}
pdev->last_resource = 0;
}
/* Free named objects. */
cos_dict_objects_delete(pdev->named_objects);
COS_FREE(pdev->named_objects, "pdf_close(named_objects)");
pdev->named_objects = 0;
/* Wrap up. */
gs_free_object(mem, pdev->pages, "pages");
pdev->pages = 0;
pdev->num_pages = 0;
{
int code = gdev_vector_close_file((gx_device_vector *) pdev);
return pdf_close_files(pdev, code);
}
}
|