]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Andreas Rueckert's fix to allow more complex documents to have in-line
authorSteve Coffman <gears@apache.org>
Fri, 21 Apr 2000 21:11:29 +0000 (21:11 +0000)
committerSteve Coffman <gears@apache.org>
Fri, 21 Apr 2000 21:11:29 +0000 (21:11 +0000)
images by not converting to millipoints twice. Dang millipoints. I told
you they'd bite us. I think they're evil.

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

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

index 7f29ad333eef7a438ac501e415198288dd23b485..0bf33a6e0b92a907f9468291b8849685ddc70851 100644 (file)
@@ -333,7 +333,7 @@ public class PDFRenderer implements Renderer {
        int w = area.getContentWidth();
        int h = area.getHeight();
 
-       this.currentYPosition -= h*1000;
+       this.currentYPosition -= h;
 
        FopImage img = area.getImage();