使用Apache Batik调整svg文件大小时的OutofMemory

时间:2013-03-08 04:09:04

标签: java svg java-2d batik

我使用以下代码

生成了svg文件
public class TestSVGGen {

        static BufferedImage img;

        public void paint(SVGGraphics2D g2d) {
                g2d.setPaint(Color.red);
                g2d.fill(new Rectangle(10, 10, 100, 100));
                g2d.drawImage(img, 0, 0, img.getWidth() ,img.getHeight(), null);
                g2d.setSVGCanvasSize(new Dimension(img.getWidth(), img.getHeight()));
        }

        public static void main(String[] args) throws IOException {

                img = ImageIO.read(TestSVGGen.class.getClassLoader().getResourceAsStream("images/test_offscreen.jpg"));

                // Get a DOMImplementation.
                DOMImplementation domImpl = GenericDOMImplementation
                                .getDOMImplementation();

                // Create an instance of org.w3c.dom.Document.
                String svgNS = "http://www.w3.org/2000/svg";
                Document document = domImpl.createDocument(svgNS, "svg", null);

                // Create an instance of the SVG Generator.
                SVGGraphics2D svgGenerator = new SVGGraphics2D(document);


                // Ask the test to render into the SVG Graphics2D implementation.
                TestSVGGen test = new TestSVGGen();
                test.paint(svgGenerator);

                // Finally, stream out SVG to the standard output using
                // UTF-8 encoding.
                boolean useCSS = true; // we want to use CSS style attributes
                File file = new File("image.svg");
                FileOutputStream fos = new FileOutputStream(file);
                Writer out = new OutputStreamWriter(fos, "UTF-8");
                svgGenerator.stream(out, useCSS);


        }

现在,我想将此图片画布的尺寸调整为18,000 * 18000尺寸,因为我想将尺寸包含的图像重新调整为此尺寸,但每当我尝试以下代码(仅代码的一部分)时

svgCanvas.setSize(new Dimension(18000, 18000));

程序抛出内存异常,

我应该怎么做才能将尺寸调整到指定的大尺寸,有没有像平铺或图像分割那样的工作。

我是蜡染新手所以请帮帮我

1 个答案:

答案 0 :(得分:1)

我使用来自batik 的contrib目录的 TiledImageTranscoderfrom解决了我的问题,并获得了一个成功的结果,没有任何内存不足错误。

上面的类在从ECLIPSE IDE运行时一次只使用35 MB内存,在我的机器上需要30秒才能将映像文件完全写入磁盘。

结果是在TIFF中。