如何使用javascript或jquery将总html页面转换为pdf

时间:2012-08-24 11:43:59

标签: javascript jquery

我尝试将带有动态值的html页面转换为pdf,但我不能。我看到了一些类似 jspdf 的api,但这并不符合我的需要。任何人都可以推荐适合此目的的Javascript或jQuery库吗?

1 个答案:

答案 0 :(得分:12)

这是一个在本地工作的小片段 - 您可以更改为适合您的主机设置:

URL url = new File("test.html").toURI().toURL();
WebClient webClient = new WebClient(); 
HtmlPage page = webClient.getPage(url);

OutputStream os = null;
try{
   os = new FileOutputStream("test.pdf");

   ITextRenderer renderer = new ITextRenderer();
   renderer.setDocument(page,url.toString());
   renderer.layout();
   renderer.createPDF(os);
} finally{
   if(os != null) os.close();
}

或者,这是jsPDF的链接:http://code.google.com/p/jspdf

这是使用jsPDF的一个有用示例:

var doc = new jsPDF();
doc.text(20, 20, 'Hello world!');
doc.text(20, 30, 'This is client-side Javascript, pumping out a PDF.');
doc.addPage();
doc.text(20, 20, 'Do you like that?');

// Output as Data URI
doc.output('datauri');

可在此处找到更多信息:http://snapshotmedia.co.uk/blog/jspdf