]> source.dussan.org Git - xmlgraphics-fop.git/commit
Improved JUnit report creation.
authorJeremias Maerki <jeremias@apache.org>
Wed, 5 Apr 2006 14:21:39 +0000 (14:21 +0000)
committerJeremias Maerki <jeremias@apache.org>
Wed, 5 Apr 2006 14:21:39 +0000 (14:21 +0000)
commitd1c0afa0a3a277b02c7301c37fd6b9fb34f0d2ba
tree50175cf4652eb077bb84db07cfc363cd498dac79
parent05ff967d64a3050a5ce08cc435bd91844efcf89d
Improved JUnit report creation.
Added support for OutputIntent objects in PDF. When PDF/A-1b is activated OutputIntents are created and the sRGB color space is used by default (hardcoded for the moment for lack of better color infrastructure in FOP).
The sRGB color profile from HP (covering sRGB IEC61966-2.1) is now embedded in fop.jar as a resource so the PDF library can embed it. The sRGB profile from the Sun JRE is much bigger. That's why it's not used.
The Gladiator TrueType font (glb12.ttf) has been copied over from Batik and is used to verify PDF/A-1b's conformance checks.
CMYK JPEG image added to test resources so PDF/A-1b color space checks can be performed.
With the color space checks, support for PDF/A-1b is complete to the degree that FOP supports the creation of elements described in ISO 19005-1, except for the case where an embedded XMP packet is used in the fo:declarations element. In this case the metadata is not synchronized with the values in the Info PDF object which could lead to validation errors when checking for PDF/A-1b conformance.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@391624 13f79535-47bb-0310-9956-ffa450edef68
24 files changed:
README
build.xml
src/java/org/apache/fop/pdf/PDFDocument.java
src/java/org/apache/fop/pdf/PDFFactory.java
src/java/org/apache/fop/pdf/PDFOutputIntent.java [new file with mode: 0644]
src/java/org/apache/fop/pdf/PDFRoot.java
src/java/org/apache/fop/pdf/sRGB Color Space Profile.icm [new file with mode: 0644]
src/java/org/apache/fop/pdf/sRGB Color Space Profile.icm.LICENSE.txt [new file with mode: 0644]
src/java/org/apache/fop/render/pdf/FopPDFImage.java
src/java/org/apache/fop/render/pdf/PDFRenderer.java
src/java/org/apache/fop/svg/PDFGraphics2D.java
test/java/org/apache/fop/StandardTestSuite.java [new file with mode: 0644]
test/java/org/apache/fop/render/pdf/PDFAConformanceTestCase.java [new file with mode: 0644]
test/resources/fonts/glb12.README.txt [new file with mode: 0644]
test/resources/fonts/glb12.ttf [new file with mode: 0755]
test/resources/fonts/glb12.ttf.ansi.xml [new file with mode: 0644]
test/resources/fonts/glb12.ttf.xml [new file with mode: 0644]
test/resources/images/cmyk.jpg [new file with mode: 0644]
test/test.xconf [new file with mode: 0644]
test/xml/pdf-a/base14-font.fo [new file with mode: 0644]
test/xml/pdf-a/minimal-pdf-a.fo [new file with mode: 0644]
test/xml/pdf-a/with-cmyk-images.fo [new file with mode: 0644]
test/xml/pdf-a/with-eps.fo [new file with mode: 0644]
test/xml/pdf-a/with-rgb-images.fo [new file with mode: 0644]