java-html2image
java-html2image copied to clipboard
Automatically exported from code.google.com/p/java-html2image
``` What steps will reproduce the problem? Run this code: public static void main(String[] args) { HtmlImageGenerator imageGenerator = new HtmlImageGenerator(); imageGenerator.loadHtml("aaabbbaaabbb"); imageGenerator.saveAsImage("hello-world.png"); } What is the expected output? What...
``` I attached the html and converted code. and the code is quite simple @Test public void htmlToJpg() throws MalformedURLException{ HtmlImageGenerator imageGenerator = new HtmlImageGenerator(); String uri = new File("//home/gnsg/Desktop/test.html").toURL().toString();...
``` What steps will reproduce the problem? 1. As long as Chinese characters present in html text 2. 3. What is the expected output? Chinese characters in image as Chinese...
``` What steps will reproduce the problem? 1. Call HtmlImageGenerator.loadUrl(String) and input a website 2. Call HtmlImageGenerator.saveAsImage(File) 3. View image output What is the expected output? What do you see...
``` What steps will reproduce the problem? 1. when we are creating image only arial font is showing. 2. in html taking times new roman 3. What is the expected...
``` What steps will reproduce the problem? HtmlImageGenerator imageGenerator = new HtmlImageGenerator(); imageGenerator.loadUrl("http://www.google.co.uk"); imageGenerator.saveAsImage("hello-world.png"); What is the expected output? What do you see instead? The formatting is not correct at...
Customize the background color and transparency for the generated image
Hello, Is there any way around this? I have tried display: flex, display: inline-block, float: left.. etc All of them are being ignored and when the image is generated, the...
Hi, this is my contribution to the project 💣 😄 - Fixed Maven pom.xml - Fixed some bugs / improved minor things - Removed Spring Dependency - Upgrade to Apache...