]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Support PDF rendering
authorKaren Lease <klease@apache.org>
Sat, 23 Feb 2002 16:47:37 +0000 (16:47 +0000)
committerKaren Lease <klease@apache.org>
Sat, 23 Feb 2002 16:47:37 +0000 (16:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194667 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/area/CTM.java
src/org/apache/fop/area/RegionReference.java

index 9a4ee968c55945a75e9e309268f28fbccd044fa8..d31fed9a3f7bfdd1b80d5113ef67ae643a32e90f 100644 (file)
@@ -206,4 +206,8 @@ public class CTM implements Serializable {
     public String toString() {
        return "[" + a + " " + b + " " + c + " " + d + " " + e + " " + f + "]";
     }
+
+    public String toPDFctm() {
+       return a + " " + b + " " + c + " " + d + " " + e/1000f + " " + f/1000f;
+    }
 }
index f4fd6734b9de58f302260fd536582e30431bf283..f63889c7e97c5ec9af5c10cf2878705c92dfce48 100644 (file)
@@ -35,6 +35,11 @@ public class RegionReference extends Area implements Serializable {
         this.ctm = ctm;
     }
 
+    public CTM getCTM() {
+        return this.ctm;
+    }
+
+
     // the list of block areas from the static flow
     ArrayList blocks = new ArrayList();