diff options
author | Kelly Campbell <kellyc@apache.org> | 2000-12-18 02:28:40 +0000 |
---|---|---|
committer | Kelly Campbell <kellyc@apache.org> | 2000-12-18 02:28:40 +0000 |
commit | 6fd5d987513c63d6165216bff1a1dc931c881d7f (patch) | |
tree | 613984df6537ea9ffc022077b4732045d950fcea /lib | |
parent | 7a8a17ca8876d9b9b76131bc34ea10bac6c9346d (diff) | |
download | xmlgraphics-fop-6fd5d987513c63d6165216bff1a1dc931c881d7f.tar.gz xmlgraphics-fop-6fd5d987513c63d6165216bff1a1dc931c881d7f.zip |
Changed output from Writer to OutputStream to allow for binary output.
Added compression filters for PDF renderer.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193888 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Fop.class | bin | 4103 -> 4052 bytes | |||
-rw-r--r-- | lib/Fop.java | 9 |
2 files changed, 2 insertions, 7 deletions
diff --git a/lib/Fop.class b/lib/Fop.class Binary files differindex d48961ea4..3efe0e708 100644 --- a/lib/Fop.class +++ b/lib/Fop.class diff --git a/lib/Fop.java b/lib/Fop.java index 4a67db973..d304cc3ed 100644 --- a/lib/Fop.java +++ b/lib/Fop.java @@ -61,12 +61,7 @@ import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; // Java -import java.io.FileReader; -import java.io.File; -import java.io.FileWriter; -import java.io.PrintWriter; -import java.io.IOException; -import java.io.FileNotFoundException; +import java.io.*; import java.net.URL; // FOP @@ -200,7 +195,7 @@ public class Fop { driver.addElementMapping("org.apache.fop.svg.SVGElementMapping"); driver.addPropertyList("org.apache.fop.fo.StandardPropertyListMapping"); driver.addPropertyList("org.apache.fop.svg.SVGPropertyListMapping"); - driver.setWriter(new PrintWriter(new FileWriter(pdffile))); + driver.setOutputStream(new FileOutputStream(pdffile)); driver.buildFOTree(parser, fileInputSource(fofile)); driver.format(); driver.render(); |