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 /src/org/apache/fop/pdf/PDFGoTo.java | |
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 'src/org/apache/fop/pdf/PDFGoTo.java')
-rw-r--r-- | src/org/apache/fop/pdf/PDFGoTo.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/apache/fop/pdf/PDFGoTo.java b/src/org/apache/fop/pdf/PDFGoTo.java index 0a8c1aae3..60862d024 100644 --- a/src/org/apache/fop/pdf/PDFGoTo.java +++ b/src/org/apache/fop/pdf/PDFGoTo.java @@ -119,12 +119,12 @@ public class PDFGoTo extends PDFObject { * * @return the PDF string */ - public String toPDF() { + public byte[] toPDF() { String p = new String(this.number + " " + this.generation + " obj\n<<\n/S /GoTo\n" + "/D [" + this.pageReference + " /XYZ "+xPosition+" "+yPosition+" null]\n" + ">>\nendobj\n"); - return p; + return p.getBytes(); } /* example |