org.xhtmlrenderer.test.Graphics2DRendererTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flying-saucer-core Show documentation
Show all versions of flying-saucer-core Show documentation
Flying Saucer is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code as well as Java2D output.
package org.xhtmlrenderer.test;
import org.xhtmlrenderer.simple.Graphics2DRenderer;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.File;
public class Graphics2DRendererTest {
public static void main(String[] args) throws Exception {
BufferedImage img = Graphics2DRenderer.renderToImageAutoSize(new File("demos/splash/splash.html").toURL().toExternalForm(),
700, BufferedImage.TYPE_INT_ARGB);
ImageIO.write(img, "png", new File("test.png"));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy