]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
fixed placement bug, now puts the image at the correct offset
authorKeiron Liddle <keiron@apache.org>
Sun, 11 Feb 2001 22:52:57 +0000 (22:52 +0000)
committerKeiron Liddle <keiron@apache.org>
Sun, 11 Feb 2001 22:52:57 +0000 (22:52 +0000)
removed debug messages

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194062 13f79535-47bb-0310-9956-ffa450edef68

src/org/apache/fop/render/pdf/PDFRenderer.java

index cad27e8f3ad18a3d73ba553dde0aeb0a15ccd6c1..0954856d5e31db18cffe2aa1a9c223a6badb2551 100644 (file)
@@ -582,10 +582,8 @@ public class PDFRenderer implements Renderer {
        * @param area the SVG area to render
        */
     public void renderSVGArea(SVGArea area) {
-       // Buggy: Will align to the beginning of the last text
-        //int x = this.currentXPosition;
-       // Buggy: Will always left align
-        int x = this.currentAreaContainerXPosition;
+        // place at the current instream offset
+        int x = this.currentXPosition;
        // Buggy: Method getXOffset() not found in class org.apache.fop.dom.svg.SVGArea
         //int x = this.currentAreaContainerXPosition + area.getXOffset();
         int y = this.currentYPosition;
@@ -598,13 +596,6 @@ public class PDFRenderer implements Renderer {
        // translate and scale according to viewbox.
        if (svg.getViewBox () != null) {
            SVGRect view = svg.getViewBox().getBaseVal();
-        /*
-           System.out.println ("viewbox=\""+
-               view.getX()+" "+
-               view.getY()+" "+
-               view.getWidth()+" "+
-               view.getHeight()+"\"");
-           */
 
            // TODO take aspect constraints (attribute preserveAspectRatio)
            // into account.
@@ -620,13 +611,6 @@ public class PDFRenderer implements Renderer {
            sy = -sy;
        }
 
-       System.out.println ("viewBox: offsets="+
-           xOffset+" (x="+x+") "+
-           yOffset+" (y="+y+") scale="+
-           sx+" "+
-           sy+" w="+w+" h="+h
-       );
-       
         /*
          * Clip to the svg area.
          * Note: To have the svg overlay (under) a text area then use