我想问一下html2image,我有一些像这样的代码
import gui.ava.html.image.generator.HtmlImageGenerator;
import java.io.File;
public class html2image {
public static void main(String[] args) {
HtmlImageGenerator imageGenerator = new HtmlImageGenerator();
imageGenerator.loadHtml("<b>Hello World!</b> Please goto <a title=\"Goto Google\" href=\"http://www.google.com\">Google</a>.");
imageGenerator.saveAsImage("hello-world.png");
imageGenerator.saveAsHtmlWithMap("hello-world.html", "hello-world.png");
}
}
但似乎在我调用这个java之后,它没有出现任何图像或输出图像,也许我想念一些配置,任何人都可以帮忙吗?
答案 0 :(得分:0)
尽量在 imageGenerator.saveAsImage 中给出绝对路径,否则文件将在工作目录中生成。