1
0
forked from perl/perl-PDF-API2

Accepting request 185436 from home:computersalat:devel:perl

update to 2.020

OBS-URL: https://build.opensuse.org/request/show/185436
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-PDF-API2?expand=0&rev=23
This commit is contained in:
Christian Wittmer
2013-08-01 11:54:44 +00:00
committed by Git OBS Bridge
parent 16525b1067
commit d838fbe4bc
4 changed files with 34 additions and 6 deletions

View File

@@ -1,3 +1,31 @@
-------------------------------------------------------------------
Thu Aug 1 11:42:07 UTC 2013 - chris@computersalat.de
- update to 2.020
* 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.
-------------------------------------------------------------------
Thu Jun 7 15:14:08 UTC 2012 - chris@computersalat.de