]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Reduced the size of the PSRenderer output (removed redundant movetos)
authorChristian Geisert <chrisg@apache.org>
Sat, 18 Jan 2003 18:19:14 +0000 (18:19 +0000)
committerChristian Geisert <chrisg@apache.org>
Sat, 18 Jan 2003 18:19:14 +0000 (18:19 +0000)
Submitted by: Arnd Bei�ner <arnd.beissner@cappelino.de> (see bug #16130)
VS: ----------------------------------------------------------------------

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/fop-0_20_2-maintain@195868 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
src/org/apache/fop/render/ps/PSRenderer.java

diff --git a/CHANGES b/CHANGES
index 8e7c05ac85e6416ec66e362a5cd8b5b9aafa7292..e11e151812582580ce22967a3dcb78cdc08f088b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,7 @@
 ==============================================================================
 Done since 0.20.4 release
+- Reduced the size of the PSRenderer output (removed redundant movetos)
+  Submitted by: Arnd Beißner <arnd.beissner@cappelino.de> (see bug #16130)
 - Fixed many (not all) problems with link hotspot positioning and made
   the default behavior to create a single hotspot over all words in each
   line (Karen Lease)
index ba60533cddcb0f22864539e742784134a3e0e758..0d9abeaba57b07ce836eac527f4d74a3ba9dfb63 100644 (file)
@@ -334,7 +334,6 @@ public class PSRenderer extends AbstractRenderer {
     public void renderDisplaySpace(DisplaySpace space) {
         // write("% --- DisplaySpace size="+space.getSize());
         this.currentYPosition -= space.getSize();
-        movetoCurrPosition();
     }
 
     /**
@@ -352,7 +351,6 @@ public class PSRenderer extends AbstractRenderer {
         area.getObject().render(this);
         this.currentXPosition += area.getEffectiveWidth();
         this.currentYPosition -= plOffset;
-        movetoCurrPosition();
     }
 
     /**
@@ -649,7 +647,6 @@ public class PSRenderer extends AbstractRenderer {
         } else {
             drawImageScaled(x, y, w, h, img, area.getFontState());
         }
-        movetoCurrPosition();
     }
 
 
@@ -800,7 +797,6 @@ public class PSRenderer extends AbstractRenderer {
 
         int bl = this.currentYPosition;
         // method is identical to super method except next line
-        movetoCurrPosition();
 
         String fontWeight = area.getFontState().getFontWeight();
         //comment("% --- LineArea begin font-weight="+fontWeight);