aboutsummaryrefslogtreecommitdiffstats
path: root/test/resources
Commit message (Collapse)AuthorAgeFilesLines
* Changed license headers and updated NOTICE file according to: ↵Jeremias Maerki2006-07-283-54/+57
| | | | | | http://www.apache.org/legal/src-headers.html git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@426576 13f79535-47bb-0310-9956-ffa450edef68
* Improved JUnit report creation.Jeremias Maerki2006-04-055-0/+688
| | | | | | | | | | 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
* Bugfix: CCITT Group 4 encoded TIFF images were not properly embedded in PDF ↵Jeremias Maerki2006-03-181-0/+0
| | | | | | files. FopPDFImage always used the bits/pixel and color space of the original image although our image adapter mostly convert all images to 24bit RGB. One day, we will need to improve the image handling. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@386879 13f79535-47bb-0310-9956-ffa450edef68
* EMF support review: Copyright years, rounding problems, code simplificationsJeremias Maerki2005-11-081-0/+0
| | | | | | | PDF Renderer should not fail with an exception if it receives an EMF image. It should ignore it. Test case for EMF image and an EMF image added. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@331805 13f79535-47bb-0310-9956-ffa450edef68
* Missing graphics file for test caseManuel Mall2005-10-111-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@312862 13f79535-47bb-0310-9956-ffa450edef68
* more test images for layout engine testsManuel Mall2005-10-078-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@307038 13f79535-47bb-0310-9956-ffa450edef68
* Bugzilla #36505: Jeremias Maerki2005-09-061-0/+25
| | | | | | | | | | | | | Several fixes for SVG painting in the Java2DRenderer. Updated SVG test case to test additional features. Submitted by: Richard Wheeldon <richardw.at.geoquip-rnd.demon.co.uk> Comments and changes by jeremias: Added an additional SVG image with an intrinsic size and modified the test case to use and test that, too. I'll commit this patch because it improves the current situation but I'm not happy with the current state of Java2DRenderer.renderSVGDocument(). Creating inverse transformation matrices is surely not the right way to do this. The matrix should be saved and restored instead. Furthermore, renderSVGDocument should be extracted into a Java2DSVGHandler like it is done for the other renderers. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@278966 13f79535-47bb-0310-9956-ffa450edef68
* Bugzilla #36460 (first part): Jeremias Maerki2005-09-011-0/+0
| | | | | | | Some minor cleanup and two bigger revamps of two cases. (Forgot the new image.) Submitted by: Manuel Mall <mm.at.arcus.com.au> git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@265713 13f79535-47bb-0310-9956-ffa450edef68
* Test case for squeezing an oversized image into a page. Currently fails ↵Jeremias Maerki2005-08-311-0/+0
| | | | | | because min/opt/max mechanisms currently ignored by the EGLM. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@265051 13f79535-47bb-0310-9956-ffa450edef68
* Bugzilla #36224: Jeremias Maerki2005-08-211-0/+0
| | | | | | | | | | | | | | This patch ports the 0.20.5 CCITTFaxDecode filter functionality and its support of direct embedding on certain TIFF images to the trunk. It also cleans up some of the image handling with respect to consistent closing of the input stream to avoid dangling open files. Submitted by: Manuel Mall <mm.at.arcus.com.au> Changes to the patch: Fixed a small problem with the NullFilter in the PDF library. Used tiff_group4.tiff in external-graphic-tiff.xml. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@234261 13f79535-47bb-0310-9956-ffa450edef68
* Bugzilla #36082 Jeremias Maerki2005-08-159-0/+103
| | | | | | | | | | | | | | | | | | | | | 1. Addresses the URI resolving issue as discussed in this bug by providing a FOP implementation of the URIResolver interface as well as the capabilities to set a URIResolver on the FOUserAgent object. 2. Modifies the BMPReader to extract the resolution information. 3. Fixes a possible array bounds exception in BMPImage which can happen for BMP images with extra bytes at the end. 4. Provides some infrastructure in ImageFactory in preparation of external configuration of multiple prioritised image providers per mime type. 5. Sets a proper base URL in SVGElement. 6. Provides test cases and test images for the different formats and resolutions. Submitted by: Manuel Mall <mm.at.arcus.com.au> Patch slightly modified: - EPS sample graphic exchanged with a very simple and more importantly much smaller one generated by Barcode4J. - Enabled resolution checking for some of the format-specific testcases (especially after working around resolution detection for PNG) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@232786 13f79535-47bb-0310-9956-ffa450edef68
* Image resources for testsJeremias Maerki2005-01-242-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198303 13f79535-47bb-0310-9956-ffa450edef68
* white-space and line-ending cleanupWilliam Victor Mote2002-11-2910-33/+33
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195674 13f79535-47bb-0310-9956-ffa450edef68
* improved layout a bit, added some more examples of scalingKeiron Liddle2002-11-062-9/+37
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195438 13f79535-47bb-0310-9956-ffa450edef68
* test for images with errorsKeiron Liddle2002-08-205-0/+89
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195106 13f79535-47bb-0310-9956-ffa450edef68
* changed to a format jimi can handle, no alpha and packedKeiron Liddle2002-08-191-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195098 13f79535-47bb-0310-9956-ffa450edef68
* added test, currently not handled, for a transparency factor on whole imageKeiron Liddle2002-08-021-0/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195052 13f79535-47bb-0310-9956-ffa450edef68
* added eps image typeKeiron Liddle2002-08-022-0/+364
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195051 13f79535-47bb-0310-9956-ffa450edef68
* added a few more text testsKeiron Liddle2002-07-181-0/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195005 13f79535-47bb-0310-9956-ffa450edef68
* improved patterns, the contents should be visible nowKeiron Liddle2002-07-101-2/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194992 13f79535-47bb-0310-9956-ffa450edef68
* embedding svg in instream-foreign-object with alignment and scalingKeiron Liddle2002-07-052-0/+114
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194970 13f79535-47bb-0310-9956-ffa450edef68
* some test images and fo with alignment, viewports etc.Keiron Liddle2002-07-0510-0/+360
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194967 13f79535-47bb-0310-9956-ffa450edef68
* added some more complicated fillsKeiron Liddle2002-06-281-4/+20
| | | | | | | tests use of resources inside patterns git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194931 13f79535-47bb-0310-9956-ffa450edef68
* more svg tests with transparency, patterns and imagesKeiron Liddle2002-06-217-1/+193
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194908 13f79535-47bb-0310-9956-ffa450edef68
* put decent glyphs for fontKeiron Liddle2002-06-171-25/+35
| | | | git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194890 13f79535-47bb-0310-9956-ffa450edef68
* some svg test, links and textKeiron Liddle2002-06-143-0/+175
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194883 13f79535-47bb-0310-9956-ffa450edef68