Просмотр исходного кода

FOP-2802: Java 10 PDF/SVG to Image box not shown

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1835225 13f79535-47bb-0310-9956-ffa450edef68
pull/13/head
Simon Steiner 5 лет назад
Родитель
Сommit
4a19dcab99

+ 16
- 0
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} */

+ 48
- 0
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);
}
}

Загрузка…
Отмена
Сохранить