1. 程式人生 > >java html2image 網頁生成圖片

java html2image 網頁生成圖片

1.專案引用jar包

2.示例程式碼

import gui.ava.html.image.generator.HtmlImageGenerator;

public class Html2ImageTest {

    public static void main(String[] args) {
        HtmlImageGenerator imageGenerator = new HtmlImageGenerator();
        String htmlstr = "<div><img src='http://avatar.csdn.net/2/3/A/3_u010304626.jpg'><p>編號:10001</p></div>";
        imageGenerator.loadHtml(htmlstr); // 載入html原始碼內容
        imageGenerator.getBufferedImage(); // 生成圖片字元流

        imageGenerator.saveAsImage("/home/demo1/dev/img/10001.png"); // 儲存到本地
        System.out.println("----end----");
        // imageGenerator.saveAsHtmlWithMap("/home/demo1/dev/hello-world.html",
        // "/home/demo1/dev/hello-world.png");  //把圖片轉成網頁,只是簡單的img 引用
    }
}



記錄開發過程中的點滴!