forked from ssimms/pdfapi2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChanges
3869 lines (2611 loc) · 119 KB
/
Changes
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
{{$NEXT}}
- [RT #122371] Remove a couple of improperly-placed weaken statements
(reported by Phil Perry).
- [RT #122372] Fix weakening when a page is added to the end of a multiple
page document (reported by Phil Perry).
- Fix Bank Gothic core font (reported by Phil Perry).
2.032 2017-07-02
- PDF::API2 has many circular references, and the end() method doesn't clear
them all, so memory is leaked. This release uses Scalar::Util's weaken()
function to improve garbage collection. A significant number of circular
references have been weakened, though many likely still remain.
- [RT #120756] Eliminate a warning for an ambiguous call to CORE::open
(first reported by Abdelbaki Brahmia).
- $text->text_justified() and $text->text_fill_justified() now adjust the
space between words rather than stretching individual characters in order
to get the text to fit.
- [RT #120397] Indirect references and indirect objects can have comments
embedded in their whitespace, and their object number and generation may
be split across multiple lines, which may not all be buffered (reported by
SPROUT).
- [RT #120450] Fix PDF::API2->open($filename)->stringify() (reported by
SPROUT).
- Fix an off-by-one error when calculating text width while charspace is
non-zero.
- [RT #120048] Fix PDF::API2->synfont() (broken in 2.029, fixed by Vadim
Repin) and add basic testing.
2.031 2017-01-26
- Fix use of cache files when reading streams: temp files will now be used
any time a stream is larger than 16MB (by default). Formerly, due to a
bug, they would only be created when a 4kB chunk of a stream increased to
16kB or more after being decompressed.
- Numbers, booleans, and null values can now be read from object streams.
- Update to [RT #113290]: Objects inside a large object stream are now read
without loading the entire object stream into memory.
- DEPRECATION: The low-level new_api methods have been deprecated in favor
of calling new directly. If your code uses new_api($api2, ...), replace
it with new($api2->{'pdf'}, ...).
- [RT #118352] Don't crash when adding an annotation to a page that has an
existing annotations array stored as an indirect object (reported by Johan
Vromans).
- [RT #118717] Die with an informative error if a file can't be opened
during open() or saveas() (reported by Johan Vromans).
2.030 2016-10-13
- Fix a font naming issue introduced while satisfying Perl::Critic.
2.029 2016-10-10
- [RT #113293] Files with cross-reference streams weren't correctly setting
the max object number (report and troubleshooting by Marco Pessotto).
- Handle TIFF images with strips that are wider than the image (report and
patch by Jeffrey Ratcliffe).
- [RT #98574] Increase test coverage of PDF::API2::Content (tests by Phil
Perry).
- A bunch of code cleanup and documentation updates by Paul Cochrane.
- Add a missing prereq on Win32 systems (patch by Michiel Beijen).
- [RT #113514, #98552] Fix the dash() and renderingintent() methods in
ExtGState (reported by Vadim Repin and Phil Perry).
- Satisfy all Perl::Critic severity 5 policies.
- [RT #117940] Allow PNG, GIF, and PNM files to be opened from filehandles
in addition to filenames (patch by Johan Vromans).
- [RT #33970] Fail fast when a referenced file can't be opened (requested by
Barrie Slaymaker a mere 8.5 years ago).
- Add -simplex, -duplexfliplongedge and -duplexflipshortedge as options to
$pdf->preferences() (requested by Doug Poulin).
2.028 2016-06-08
- [RT #113290] Fix for reading objects inside an object stream in a large
PDF (patch by Marco Pessotto).
- Eliminate an infinite loop when reading a corrupt dictionary.
2.027 2016-03-11
- This release contains seven fixes for parsing PDFs. They mostly affect
files using cross-reference streams, which were first supported in the
previous release. Thanks to Marco Pessotto and Stuart Henderson for their
help identifying and troubleshooting bugs.
- Added contrib/pdf-debug.pl to help track down issues related to opening
and parsing PDFs.
2.026 2016-02-24
- [RT #48683] Add support for PDFs with cross-reference streams and object
streams (patch by Don Huettl of Grant Street Group).
- [RT #107333] Accept an empty string as a valid Name, per PDF spec 1.7
section 7.3.5 (patch by Mark Balitsky).
- [RT #98551] Rename aliases 2A, 4A, 2B, and 4B to 2A0, 4A0, 2B0, and 4B0.
The old names will continue to work, but are now undocumented (patch by
Phil Perry).
- Add -mils and -color as options for barcodes. Reset linedash so that
barcodes are always solid lines (patch by Erelen).
- [RT #98549] Rename meterlimit to miterlimit (patch by Phil Perry).
- [RT #98534] Rename hspace to hscale (patch by Phil Perry).
- Fixed an infinite loop when RunLengthDecode is used for output.
- [RT #65582] Fix embedding of OpenType fonts (fix by Simon Cozens).
- [RT #67767] Allow an empty page to be imported into a PDF using
importPageIntoForm (reported by Antti Lankila).
- [RT #66341] Various fixes for ASCII85Decode and LZWDecode.
2.025 2015-09-23
- The previous release included a patch that broke compatibility with Perl
5.8.x. The minimum supported version is now Perl 5.8.5, and there is a
.perl-version file to facilitate testing using plenv.
2.024 2015-09-18
- [RT #104133] Include all bounding boxes when importing a page (patch by
Don Huettl of Grant Street Group).
- [RT #104133] When retrieving bounding boxes for a page, fall back
according to the defaults listed in the PDF spec (patch by Don Huettl of
Grant Street Group).
- Barcodes now take an optional -caption argument that will be printed
beneath the barcode. This can replace or be used in conjunction with the
text representation of the barcode (requested by Gareth Tunley).
- [RT #105581] Calls to width() in BaseFont are now significantly faster
(patch by Dmitri Tikhonov).
2.023 2014-09-12
- The fix for [RT #69503] broke a previously-working case where a page
object could be passed (and was expected). The -firstpage option now
accepts a page object or a page number. Thanks to Marco Pessotto for the
bug report and test.
2.022 2014-07-04
- Added $pdf->version() get/set method. When opening an existing PDF, the
existing version number will now be retained.
- Renamed the following in PDF::API2:
- importpage to import_page
- openScalar to open_scalar
The old names are deprecated.
- [RT #69503] Fix the -firstpage option to $pdf->preferences() so that it
doesn't always lead to a crash (reported by Dietrich Streifert).
- [RT #47974] Accept malformed xref subsections (with a warning) that have
extraneous spaces on the first line (reported by Abhinav Kaushik).
- [RT #94505] For Code128 barcodes, the initial character set is now
optional (defaults to B or C depending on the content to be encoded). The
initial character set can be passed as a capital letter, and the program
will die if an invalid character set is requested (requested by Andrea
Nall).
- Interleaved 2 of 5 barcodes now prepend a zero when an odd number of
digits is specified, which is standard behavior. Previously, a zero was
appended instead.
- $page->rotate(0) now sets rotation to 0 degrees rather than deleting an
existing page rotation command. Page rotation is inherited, so this is
necessary to undo any inherited page rotation.
- Fix: Attempts to use EAN-128 barcodes resulted in an error.
- Add a more informative error when text() is called without first setting a
font(), and when font() is called without including a font size.
2.021 2014-02-20
- Fixed numerous bugs in the string parsing code, including the one reported
in [RT #63918] by Frank Doepper.
- [RT #41049] Rewrote literal string parsing to prevent a stack overflow due
to an inefficient regex (reported by Sergei Fetisov).
- [RT #91822] Fix compression of GIF images to ensure that output codes
don't exceed 12 bits (reported by Vadim Repin).
- The RunLengthDecode filter didn't actually work. Its code has been
rewritten and now passes basic encoding and decoding tests.
- Fix Code128 barcode switching from Code C to Code B in certain cases
(reported by Doru Petrescu).
2.020 2013-01-20
- Give a more informative error message when a PDF file using a
cross-reference stream is encountered. The Known Issues section of the
documentation includes pointers on how to add support in case someone else
can get to this before I do.
- Text using TrueType fonts is now searchable again. In version 0.61, an
undocumented -unicodemap option was added to nearly all of the font
resource methods, which only included a ToUnicode CMap if it was set (and
it's required in order for PDF readers to be able to identify individual
characters if BaseEncoding isn't present, which it isn't for TrueType
fonts).
I've left the -unicodemap option in place, and it's still undocumented
(except here), but it's now on by default. Call $pdf->ttfont($fontfile,
-unicodemap => 0) if you want to disable it for performance or file size
reasons.
- Add a note to the stringify method's documentation saying that it's a
destructive operation.
- The various filter types have their own classes in the
PDF::API2::Basic::PDF::Filter namespace now, rather than having all of the
packages in Filter.pm.
- To facilitate testing and ensure that identically-generated PDFs have
identical output in Perl 5.17.5 or later, PDF dictionary keys are now
sorted during output.
2.019 2011-03-10
- [RT #66167] Fix a typo in the require statement for code128 barcodes (TC
Kuan).
- Numerous modules are now only loaded when they're needed, which should
help speed up the load time and reduce the memory footprint.
- Test coverage is up to about 45% of the codebase.
2.018 2011-02-23
- The tests in 2.017 exposed a floating point issue where some computers
give more trailing zeros than others. It doesn't affect the output, but
it does break the tests on those computers, since the PDFs are slightly
different. This version modifies the float() method to remove trailing
zeros, which should fix the test breakage and give consistent PDFs.
2.017 2011-02-22
- The DejaVu fonts have been removed from the distribution, since they were
only used by one example script. If you need them for your project, you
can download them from http://dejavu-fonts.org
- Fix: Content->bogen() didn't behave as documented if $move was set (it
started drawing from the center of the circle rather than [x1, y1]).
- The undocumented nettfont method has been removed, along with the
supporting PDF::API2::Resource::Font::neTrueType module.
- The undocumented save_xml method has been removed, along with the
supporting functions in PDF::API2::Basic::*.
- The undocumented textstate2 method has been removed from
PDF::API2::Content.
- [RT #58386] Fix create_egs call in Lite.pm (J Greely)
- [RT #62922] Fix string interpolation in pdf-merge.pl (Guillaume Rousse and
Jerome Quelin)
- [RT #65458] Fix an error in the synopsis (Frank Ammeter)
- [RT #66054] Fix rename of .cmap files so that they actually work
now. (cnhacktnt)
- The test suite has grown to nearly 200 tests, covering about 40% of the
codebase. There's still plenty of room for improvement.
2.016 2011-01-24
- New Maintainer: Steve Simms (http://deefs.net)
- This release jumps from version 0.73 to 2.016 in order to provide a
consistent version number across all modules in the distribution without
breaking any existing code or going backwards.
- Lots of updates to the documentation, particularly in PDF::API2::Content,
which was almost completely rewritten and reorganized.
- Font::TTF has been added as a dependency instead of being embedded in the
distribution.
- Everything that worked in 0.73 should work unmodified in 2.016, at least
if it used the published documentation, and most everything should still
work even if it didn't.
- PDF::API2 used to read and parse three text files, one of which was over
500kB, on every load. These files have been turned into modules, and
while I haven't done any performance testing, I'd have a hard time
believing that it isn't faster now.
- There are now a few tests forming the beginning of a test suite.
Contributions of tests would be most welcome!
======================================================================
Changes below this point are from PDF::API2 0.73 and earlier,
generated from the CVS logs.
======================================================================
2009-03-20 09:54 fredo
* lib/PDF/API2/Resource/CIDFont/TrueType.pm: rt.cpan.org
#42524: strange space size after update on 0.72.003 from
0.71
2008-11-20 19:51 fredo
* lib/PDF/API2/Resource/CIDFont/TrueType.pm: perf
2008-11-05 00:05 fredo
* lib/PDF/API2/Version.pm: *** empty log message ***
2008-11-04 23:54 fredo
* lib/PDF/API2/Basic/PDF/Dict.pm
lib/PDF/API2/Resource/Font.pm: fixed [rt.cpan.org #40648]
Unicode text prints text on top of text before it
2008-08-10 15:06 fredo
* examples/021_synfonts: added relative use lib
2008-08-10 14:57 fredo
* lib/PDF/API2/Version.pm: *** empty log message ***
2008-08-10 14:43 fredo
* examples/021_syntruefonts
lib/PDF/API2/Resource/Font/SynFont.pm
lib/PDF/API2/fonts/AUTHORS.txt
lib/PDF/API2/fonts/DejaVuSans-Bold.ttf
lib/PDF/API2/fonts/DejaVuSans-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSans-ExtraLight.ttf
lib/PDF/API2/fonts/DejaVuSans-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSans.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed-Bold.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed.ttf
lib/PDF/API2/fonts/DejaVuSansMono-Bold.ttf
lib/PDF/API2/fonts/DejaVuSansMono-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSansMono-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSansMono.ttf
lib/PDF/API2/fonts/DejaVuSerif-Bold.ttf
lib/PDF/API2/fonts/DejaVuSerif-BoldItalic.ttf
lib/PDF/API2/fonts/DejaVuSerif-Italic.ttf
lib/PDF/API2/fonts/DejaVuSerif.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-Bold.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-BoldItalic.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-Italic.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed.ttf
lib/PDF/API2/fonts/LICENSE.txt lib/PDF/API2/fonts/NEWS.txt
lib/PDF/API2/fonts/README.txt
lib/PDF/API2/fonts/langcover.txt
lib/PDF/API2/fonts/status.txt
lib/PDF/API2/fonts/unicover.txt: to 2.25
2008-03-10 21:38 fredo
* examples/060_transparency: genesis
2008-03-10 21:23 fredo
* examples/012_pages: genesis
2008-02-15 15:22 fredo
* lib/PDF/API2/Content.pm: added -spillover param to paragraph
and sub-methods
2008-01-18 00:11 fredo
* lib/PDF/API2.pm: fixed catalog update and infohash utf16
from http://bugs.debian.org/461167
2008-01-04 08:10 fredo
* lib/PDF/API2/Resource/Font/neTrueType.pm: flag fixes
2008-01-04 08:08 fredo
* lib/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm: apiname
fix
2007-11-16 19:30 fredo
* lib/PDF/API2.pm: added -noembed option
2007-11-16 19:27 fredo
* lib/PDF/API2/Resource/CIDFont/TrueType.pm
lib/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm: fixed
-noembed option
2007-11-16 19:03 fredo
* MANIFEST: added non-embedded truetype
2007-11-14 23:01 fredo
* lib/PDF/API2.pm: fixed relative page insert
2007-11-14 22:49 fredo
* lib/PDF/API2.pm: added non-embedded truetype font (8-bit
only) support
2007-11-14 22:47 fredo
* lib/PDF/API2/Resource/Font/neTrueType.pm: genesis
2007-11-14 20:46 fredo
* lib/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm: added
noembed option
2007-11-03 20:31 fredo
* lib/PDF/API2/Basic/PDF/File.pm: make startxref detection
more tolerant
2007-10-23 07:49 fredo
* MANIFEST: added 022_truefonts_diacrits_utf8
2007-10-23 07:48 fredo
* examples/022_truefonts_diacrits_utf8: genesis
2007-10-23 07:46 fredo
* examples/020_textunderline: new
2007-10-23 07:45 fredo
* lib/PDF/API2/Resource/CIDFont/TrueType.pm: fixed width
encoding for wrong advance codes
2007-10-16 20:08 fredo
* lib/PDF/API2/Resource/BaseFont.pm: changed undef safeguards
for wx* methods
2007-10-10 06:18 fredo
* lib/PDF/API2/Content.pm lib/PDF/API2/Resource/BaseFont.pm
lib/PDF/API2/Version.pm: fixed noisy undef handling of
isvirtual
2007-10-02 19:59 fredo
* lib/PDF/API2/Annotation.pm: added movie annotation
2007-09-26 19:50 fredo
* lib/PDF/API2/Basic/PDF/File.pm: make trailer detection more
tolerant for reported ghostscript and swets formats
2007-09-18 22:29 fredo
* lib/PDF/API2.pm: added -printscalingnone option
2007-09-17 16:03 fredo
* lib/PDF/API2/Resource/XObject/Image/TIFF.pm: update docs for
tiffTag
2007-09-14 15:36 fredo
* lib/PDF/API2/Resource/XObject/Image/TIFF.pm: also read Tiff
Tag 296 and make it available as resUnit
2007-08-27 20:06 fredo
* lib/PDF/API2/Basic/TTF/Cmap.pm: updated ms_table election
algo to support newer apple and m$ unicode 3.1+ glyph cmaps
2007-08-07 20:40 fredo
* examples/020_corefonts: added use lib
2007-08-07 20:23 fredo
* lib/PDF/API2/Content.pm: added wantarray choice for
paragraph,
2007-08-01 23:12 fredo
* lib/PDF/API2.pm: fix BOM in info strings
2007-07-01 20:32 fredo
* lib/PDF/API2/fonts/DejaVuSerif-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSerif-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-Oblique.ttf: sync
with dejavu 2.18
2007-07-01 20:30 fredo
* lib/PDF/API2/fonts/AUTHORS.txt
lib/PDF/API2/fonts/DejaVuSans-Bold.ttf
lib/PDF/API2/fonts/DejaVuSans-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSans-ExtraLight.ttf
lib/PDF/API2/fonts/DejaVuSans-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSans.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed-Bold.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed.ttf
lib/PDF/API2/fonts/DejaVuSansMono-Bold.ttf
lib/PDF/API2/fonts/DejaVuSansMono-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSansMono-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSansMono.ttf
lib/PDF/API2/fonts/DejaVuSerif-Bold.ttf
lib/PDF/API2/fonts/DejaVuSerif-BoldItalic.ttf
lib/PDF/API2/fonts/DejaVuSerif-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSerif-Italic.ttf
lib/PDF/API2/fonts/DejaVuSerif-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSerif.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-Bold.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-BoldItalic.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-Italic.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed.ttf
lib/PDF/API2/fonts/NEWS.txt lib/PDF/API2/fonts/README.txt
lib/PDF/API2/fonts/langcover.txt
lib/PDF/API2/fonts/status.txt
lib/PDF/API2/fonts/unicover.txt: avu 2.18
2007-06-27 20:54 fredo
* lib/PDF/API2/Resource/Font/Postscript.pm: fix exporter
warnings of IO::File
2007-06-23 09:48 fredo
* contrib/text2pdf.pl: added contributor email
2007-06-23 09:43 fredo
* MANIFEST: added text2pdf.pl
2007-06-23 09:42 fredo
* contrib/text2pdf.pl: genesis from contribution
2007-06-07 10:43 fredo
* lib/PDF/API2/Basic/PDF/File.pm: fixed %%EOF/startxref
detection to be done in chunks
2007-05-27 09:46 fredo
* lib/PDF/API2/Basic/PDF/File.pm: preparations for abbyy
finereader fix
2007-05-24 19:29 fredo
* lib/PDF/API2/Resource/XObject/Image/PNM.pm: fixed pnm bitmap
decoding
2007-05-16 21:45 fredo
* lib/PDF/API2.pm: fixed importpage doku bug
http://rt.cpan.org/Ticket/Display.html?id=27152
2007-05-10 23:38 fredo
* lib/PDF/API2.pm: added note on importintoform and importpage
for existing pdf-file
2007-05-10 06:44 fredo
* lib/PDF/API2/Basic/PDF/Pages.pm: fixed page insert with
upstream text-pdf 0.29a version
2007-05-08 18:32 fredo
* lib/PDF/API2.pm lib/PDF/API2/Content.pm lib/PDF/API2/Lite.pm
lib/PDF/API2/Page.pm
lib/PDF/API2/Resource/XObject/Form/Hybrid.pm: renamed
compress to compressFlate
2007-05-08 18:11 fredo
* lib/PDF/API2/Content.pm: fixed bogen
2007-05-08 17:58 fredo
* MANIFEST: removed changelog
2007-05-07 20:33 fredo
* lib/PDF/API2.pm: fix tounicode option
2007-05-07 20:31 fredo
* lib/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm: fix
subsetting
2007-04-25 18:04 fredo
* lib/PDF/API2/Version.pm: tag release 0.60
2007-04-25 17:58 fredo
* lib/PDF/API2/Basic/TTF/Name.pm: added upstream fix for 5.8.7
bugs
2007-04-18 05:26 fredo
* lib/PDF/API2/Resource/Font/SynFont.pm: fixed unicode caos
handling for some broken fonts having no unicode for a glyph
2007-04-07 10:28 fredo
* examples/023_cjkfonts: added lorem ipsum page
2007-04-07 10:26 fredo
* examples/022_truefonts: added lorem ipsum page
2007-04-07 10:25 fredo
* lib/PDF/API2/Resource/BaseFont.pm: fixed fix for wxByGlyph
not honoring cidfont width arrays
2007-04-07 09:51 fredo
* lib/PDF/API2/Resource/BaseFont.pm: fix for wxByGlyph not
honoring cidfont width arrays
2007-03-17 22:41 fredo
* Makefile.PL: fixed version print
2007-03-17 20:38 fredo
* lib/PDF/API2/IOString.pm lib/PDF/API2/Resource/CIDFont.pm
lib/PDF/API2/Resource/CIDFont/CJKFont.pm
lib/PDF/API2/Resource/CIDFont/TrueType.pm
lib/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm
lib/PDF/API2/Resource/XObject/Image/JPEG.pm
lib/PDF/API2/Resource/XObject/Image/TIFF.pm: replaced
IOString dep. with scalar IO.
2007-03-17 20:15 fredo
* lib/PDF/API2/Version.pm: release sync
2007-03-17 20:07 fredo
* lib/PDF/API2.pm: fixed open to CORE::open
2007-03-16 15:48 fredo
* lib/PDF/API2/Version.pm: release sync
2007-03-16 15:39 fredo
* make_release.pl: fixed build/release versioning
2007-03-16 15:35 fredo
* lib/PDF/API2/fonts/AUTHORS.txt lib/PDF/API2/fonts/BUGS.txt
lib/PDF/API2/fonts/DejaVuSans-Bold.ttf
lib/PDF/API2/fonts/DejaVuSans-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSans-ExtraLight.ttf
lib/PDF/API2/fonts/DejaVuSans-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSans.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed-Bold.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSansCondensed.ttf
lib/PDF/API2/fonts/DejaVuSansMono-Bold.ttf
lib/PDF/API2/fonts/DejaVuSansMono-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSansMono-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSansMono.ttf
lib/PDF/API2/fonts/DejaVuSerif-Bold.ttf
lib/PDF/API2/fonts/DejaVuSerif-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSerif-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSerif.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-Bold.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-BoldOblique.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed-Oblique.ttf
lib/PDF/API2/fonts/DejaVuSerifCondensed.ttf
lib/PDF/API2/fonts/LICENSE.txt lib/PDF/API2/fonts/NEWS.txt
lib/PDF/API2/fonts/README.txt
lib/PDF/API2/fonts/langcover.txt
lib/PDF/API2/fonts/status.txt
lib/PDF/API2/fonts/unicover.txt:
2007-03-16 15:28 fredo
* lib/PDF/API2.pm: replaced IOString dep. with scalar IO.
2007-03-16 15:27 fredo
* lib/PDF/API2/Version.pm: release update
2007-03-16 15:26 fredo
* lib/PDF/API2/Content.pm: removed silly grey-level handling
2007-03-16 15:25 fredo
* lib/PDF/API2/Basic/PDF/File.pm: removed open_swallowed since
it is not nedded anymore
2007-03-16 15:20 fredo
* examples/011_open_update: genesis
2007-03-15 16:41 fredo
* make_release.pl: genesis
2007-03-15 16:02 fredo
* examples/040_annotation examples/050_pagelabels: update
copyright
2007-03-15 15:58 fredo
* examples/040_annotation: genesis
2007-03-15 14:15 fredo
* lib/PDF/API2.pm: added pageLabel method
2007-03-14 19:30 fredo
* lib/PDF/API2.pm: fixed -twocolumnright option typo
2007-03-12 16:24 fredo
* lib/PDF/API2/Content.pm: removed eval from state calls
2007-03-10 12:18 fredo
* lib/PDF/API2/Basic/PDF/Objind.pm: applied improvements to
release proposed by [email protected]
2007-03-10 12:05 fredo
* lib/PDF/API2/Resource/Font.pm: applied improvements to
encodeByData proposed by [email protected]
2007-03-10 11:10 fredo
* lib/PDF/API2/Basic/PDF/File.pm: fixed trailer detection to
be more tolerant (towards pdf-spec 1.7)
2007-02-22 08:00 fredo
* lib/PDF/API2.pm: changed import* methods to check its first
arg -- thanks [email protected]
2007-02-14 20:29 fredo
* lib/PDF/API2/Resource/Font/CoreFont/courier.pm: fixed
default encoding with bold
2007-02-14 11:44 fredo
* lib/PDF/API2/Resource/Font/CoreFont/timesroman.pm: updated
default encoding to that used by bold
2007-02-14 11:26 fredo
* lib/PDF/API2/Content.pm: fixed advancewidth for space
calculation
2007-02-14 11:22 fredo
* lib/PDF/API2/Basic/PDF/File.pm: updated versioning to
PDF::API2
2007-02-14 11:19 fredo
* lib/PDF/API2/Basic/PDF/File.pm: fixed version update for
interoperability
2007-01-04 17:39 fredo
* lib/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm: fixed
[rt.cpan.org #24203] Incompatibility in Wide character
handling
2007-01-04 16:33 fredo
* lib/PDF/API2/Resource/BaseFont.pm: fix acro 8 fix
2007-01-04 16:02 fredo
* .project lib/PDF/API2/Content.pm
lib/PDF/API2/Resource/BaseFont.pm
lib/PDF/API2/Resource/CIDFont.pm
lib/PDF/API2/Resource/UniFont.pm: applied untested fix for
acrobat 8 "<ident> TJ" bug
2006-08-14 18:11 fredo
* lib/PDF/API2/Resource/BaseFont.pm: fixed wxByGlyph
2006-08-14 18:08 fredo
* lib/PDF/API2/Resource/Font/Postscript.pm: moved "use
io-file" to begin section
2006-08-01 19:45 fredo
* MANIFEST: added dejavu fonts
2006-06-25 20:31 fredo
* lib/PDF/API2/Version.pm: prepairing dejavu font inclusion
2006-06-19 19:25 fredo
* lib/PDF/API2/Content.pm: fixed compress vs. Compress::ZLib
subs
2006-06-19 19:22 fredo
* lib/PDF/API2/Resource/CIDFont.pm: removed dup sub
2006-06-19 19:20 fredo
* examples/022_truefonts: added details
2006-06-16 01:56 fredo
* lib/PDF/API2/Version.pm: version 0.52
2006-06-15 21:12 fredo
* examples/027_winfont: added cid map
2006-06-15 20:27 fredo
* lib/PDF/API2/Basic/PDF/String.pm: modified escaped string
conversion
2006-06-15 20:15 fredo
* lib/PDF/API2/Basic/PDF/File.pm: beautification
2006-06-14 16:57 fredo
* lib/PDF/API2/Resource/BaseFont.pm: fixed ToUnicode cmap
greneration to use actual encoden rather than the default
2006-06-14 16:53 fredo
* lib/PDF/API2/Resource/BaseFont.pm: fixed unicode lookup to
use actual encoding rather than default
2005-11-16 02:52 fredo
* META.yml Makefile.PL lib/PDF/API2/Version.pm: fix for 0.51
2005-11-02 19:21 fredo
* lib/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm: added kerning
lookup strategy
2005-11-02 19:18 fredo
* lib/PDF/API2/Page.pm: added get_(crop/bleed/trim/art)box methods
2005-10-22 21:56 fredo
* lib/PDF/API2/Resource/CIDFont/TrueType/FontFile.pm: added mor
agressive kerning strategy
2005-10-21 23:42 fredo
* lib/PDF/API2/Basic/PDF/File.pm: speedup reading large
dictionaries/structs
2005-10-21 23:42 fredo
* lib/PDF/API2/IOString.pm: fixed tell tier
2005-10-21 21:52 fredo
* lib/PDF/API2/Basic/PDF/File.pm: fixed readxrtr to be more strict
to the latest pdf-spec
2005-10-21 21:51 fredo
* lib/PDF/API2.pm: fixed proc_pages
2005-10-20 23:06 fredo
* lib/PDF/API2.pm: documented '-dokern' option for ttfonts
2005-10-20 23:04 fredo
* lib/PDF/API2/Resource/: CIDFont/TrueType.pm, CIDFont.pm,
CIDFont/TrueType/FontFile.pm: added handling of optional kerning
2005-10-20 01:05 fredo
* lib/PDF/API2/Resource/Font/Postscript.pm: silenced 'cannot parse'
since it is usually no error
2005-10-19 23:23 fredo
* lib/PDF/API2.pm: documented '-dokern' option for core- and
psfonts
2005-10-19 21:12 fredo
* lib/PDF/API2/Resource/Font/: Postscript.pm, CoreFont.pm: added
handling of optional kerning
2005-10-19 21:08 fredo
* lib/PDF/API2/Resource/UniFont.pm: added extended typographic text
handling call
2005-10-19 21:07 fredo
* lib/PDF/API2/Resource/Font.pm: added handling of composites in
automap
2005-10-19 21:06 fredo
* lib/PDF/API2/Resource/BaseFont.pm: added handling of kerning
2005-10-19 21:05 fredo
* lib/PDF/API2/IOString.pm: ...
2005-10-19 21:04 fredo
* lib/PDF/API2/Content.pm: added extended typographic text handling
call
2005-10-02 01:38 fredo