diff options
author | Jeremias Maerki <jeremias@apache.org> | 2006-03-20 13:49:05 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2006-03-20 13:49:05 +0000 |
commit | 8f9856b3869ca85018dacf2f79b8c3e2e9830d48 (patch) | |
tree | bcec6c5fe21a59a2028cc92853cedf5a92b4be74 /status.xml | |
parent | df5d57e4bfe413f53673cb8465ef9a88e90c6b0a (diff) | |
download | xmlgraphics-fop-8f9856b3869ca85018dacf2f79b8c3e2e9830d48.tar.gz xmlgraphics-fop-8f9856b3869ca85018dacf2f79b8c3e2e9830d48.zip |
Certain filter combinations in PDF could lead to invalid PDFs. DecodeParams were not properly handled.
Default filter for XMP metadata set to NullFilter as XMP metadata should always be embedded as clear-text so non-PDF-aware XMP processors can extract the metadata.
Default filter for DCT/JPEG- and CCITT/TIFF-encoded images set to NullFilter because these two compression methods already do a good job. An additional flate filter (as was applied before due to the single default) helps a just little but also adds processing time. If anyone wants to squeeze every possible bit out of the PDF you can use the following in the user configuration:
<filterList type="tiff">
<value>flate</value>
</filterList>
<filterList type="jpeg">
<value>flate</value>
</filterList>
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@387213 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'status.xml')
-rw-r--r-- | status.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/status.xml b/status.xml index 4e23f12c1..f36b6968b 100644 --- a/status.xml +++ b/status.xml @@ -28,6 +28,10 @@ <changes> <release version="FOP Trunk"> <action context="Code" dev="JM" type="fix"> + Bugfix: Certain filter combinations in PDF could lead to invalid PDFs. + DecodeParams were not properly handled. + </action> + <action context="Code" dev="JM" type="fix"> Bugfix: CCITT Group 4 encoded TIFF images with multiple strips are now properly embedded in PDF files. </action> |