该文将介绍如何使用插件方式将html 保存为pdf格式。首先,请确保您使用的是spire.pdf for java 版本3.6.6及以上。其次,下载您系统适用的插件包并解压到本地文件夹。
下载地址:, , , 及.
import com.spire.pdf.graphics.pdfmargins;
import com.spire.pdf.htmlconverter.qt.htmlconverter;
import com.spire.pdf.htmlconverter.qt.size;
public class htmltopdf {
public static void main(string[] args) {
//定义需要转换的html
string url = "https://www.e-iceblue.cn/";
string filename = "result.pdf";
//设置插件本地地址
string pluginpath = "d:/qt/plugins_32";
htmlconverter.setpluginpath(pluginpath);
//转换到pdf并设置pdf尺寸
htmlconverter.convert(url, filename, true, 1000000, new size(600f, 900f), new pdfmargins(0));
}
}
效果图: