aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fop-core/src/main/java/org/apache/fop/image/loader/batik/Graphics2DImagePainterImpl.java16
-rw-r--r--fop-core/src/test/java/org/apache/fop/image/loader/batik/Graphics2DImagePainterImplTestCase.java48
2 files changed, 64 insertions, 0 deletions
diff --git a/fop-core/src/main/java/org/apache/fop/image/loader/batik/Graphics2DImagePainterImpl.java b/fop-core/src/main/java/org/apache/fop/image/loader/batik/Graphics2DImagePainterImpl.java
index 8dbce6e1b..fcf3dd2bc 100644
--- a/fop-core/src/main/java/org/apache/fop/image/loader/batik/Graphics2DImagePainterImpl.java
+++ b/fop-core/src/main/java/org/apache/fop/image/loader/batik/Graphics2DImagePainterImpl.java
@@ -21,11 +21,15 @@ package org.apache.fop.image.loader.batik;
import java.awt.Dimension;
import java.awt.Graphics2D;
+import java.awt.geom.AffineTransform;
import java.awt.geom.Rectangle2D;
+import java.math.BigDecimal;
+import java.math.RoundingMode;
import org.apache.batik.bridge.BridgeContext;
import org.apache.batik.gvt.GraphicsNode;
+import org.apache.xmlgraphics.java2d.AbstractGraphics2D;
import org.apache.xmlgraphics.java2d.Graphics2DImagePainter;
/**
@@ -75,6 +79,18 @@ public class Graphics2DImagePainterImpl implements Graphics2DImagePainter {
if (sx != 1.0 || sy != 1.0) {
g2d.scale(sx, sy);
}
+ normaliseScale(g2d);
+ }
+
+ private void normaliseScale(Graphics2D g2d) {
+ if (!(g2d instanceof AbstractGraphics2D)) {
+ AffineTransform old = g2d.getTransform();
+ double scaleX = BigDecimal.valueOf(old.getScaleX()).setScale(2, RoundingMode.HALF_UP).doubleValue();
+ double scaleY = BigDecimal.valueOf(old.getScaleY()).setScale(2, RoundingMode.HALF_UP).doubleValue();
+ AffineTransform newat = new AffineTransform(scaleX, old.getShearY(), old.getShearX(), scaleY,
+ old.getTranslateX(), old.getTranslateY());
+ g2d.setTransform(newat);
+ }
}
/** {@inheritDoc} */
diff --git a/fop-core/src/test/java/org/apache/fop/image/loader/batik/Graphics2DImagePainterImplTestCase.java b/fop-core/src/test/java/org/apache/fop/image/loader/batik/Graphics2DImagePainterImplTestCase.java
new file mode 100644
index 000000000..9a8fa4857
--- /dev/null
+++ b/fop-core/src/test/java/org/apache/fop/image/loader/batik/Graphics2DImagePainterImplTestCase.java
@@ -0,0 +1,48 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* $Id$ */
+package org.apache.fop.image.loader.batik;
+
+import java.awt.Dimension;
+import java.awt.Graphics2D;
+import java.awt.Rectangle;
+import java.awt.image.BufferedImage;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+import org.apache.batik.bridge.BridgeContext;
+import org.apache.batik.gvt.GraphicsNode;
+
+public class Graphics2DImagePainterImplTestCase {
+ @Test
+ public void testScale() {
+ GraphicsNode graphicsNode = mock(GraphicsNode.class);
+ BridgeContext bridgeContext = mock(BridgeContext.class);
+ when(bridgeContext.getDocumentSize()).thenReturn(new Dimension(1010, 1010));
+ BufferedImage image = new BufferedImage(100, 100, BufferedImage.TYPE_INT_ARGB);
+ Graphics2D graphics2D = image.createGraphics();
+ Graphics2DImagePainterImpl graphics2DImagePainter =
+ new Graphics2DImagePainterImpl(graphicsNode, bridgeContext, null);
+ graphics2DImagePainter.paint(graphics2D, new Rectangle(0, 0, 1000, 1000));
+ Assert.assertEquals(graphics2D.getTransform().getScaleX(), 0.99, 0);
+ }
+}