diff options
author | Jeremias Maerki <jeremias@apache.org> | 2007-11-03 10:59:09 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2007-11-03 10:59:09 +0000 |
commit | b4539a24234a1a79e64dcf8e360f67b6109283b9 (patch) | |
tree | 6fc40f119ae8a4b2f8c72a6b65b2d1324c405696 /build.xml | |
parent | d3568be8f920c9c4b9170626ba05a9c348439f38 (diff) | |
download | xmlgraphics-fop-b4539a24234a1a79e64dcf8e360f67b6109283b9.tar.gz xmlgraphics-fop-b4539a24234a1a79e64dcf8e360f67b6109283b9.zip |
Completely reimplemented the PDFTextPainter. All SVG text (including flow text, but excluding special cases with filters) is now painted in PDF text primitives.
The whole thing compiles against and runs with Batik 1.6 but was developed against Batik Trunk (1.7). The TextBridge for SVG 1.2 text is omitted because we're still on Batik 1.6 and FOP wouldn't compile with it. The full feature set is only available with Batik 1.7, of course. With Batik 1.6, font selection may not work as expected.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@591587 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -614,12 +614,14 @@ list of possible build targets. <include name="org/apache/fop/util/*OutputStream.class"/> <include name="org/apache/fop/util/SubInputStream.class"/> <include name="org/apache/fop/util/Finalizable.class"/> + <include name="org/apache/fop/util/CharUtilities.class"/> </patternset> <!-- PDF transcoder --> <patternset> <include name="org/apache/fop/render/pdf/**"/> <exclude name="org/apache/fop/render/pdf/PDFRenderer.class"/> <exclude name="org/apache/fop/render/pdf/PDFXMLHandler*"/> + <include name="org/apache/fop/render/*RendererConfigurator**"/> <include name="org/apache/fop/pdf/**"/> </patternset> <!-- PS transcoder --> @@ -679,11 +681,9 @@ list of possible build targets. <include name="org/apache/avalon/framework/configuration/*"/> <include name="org/apache/avalon/framework/container/*"/> <include name="org/apache/commons/logging/**"/> - <include name="org/apache/commons/io/CopyUtils.class"/> - <include name="org/apache/commons/io/IOUtils.class"/> - <include name="org/apache/commons/io/output/ProxyOutputStream.class"/> - <include name="org/apache/commons/io/output/ByteArrayOutputStream.class"/> - <include name="org/apache/commons/io/output/CountingOutputStream.class"/> + <include name="org/apache/commons/io/*.class"/> + <include name="org/apache/commons/io/filefilter/*.class"/> + <include name="org/apache/commons/io/output/*.class"/> <!-- TODO Remove the following lines once Batik switches over to using XML Graphics Commons --> <include name="org/apache/xmlgraphics/java2d/**"/> <include name="org/apache/xmlgraphics/ps/**"/> |