分享个谷歌插件,可以把网页导出成pdf文件[有些电子书就不用买了 😁
网上喜欢的文章 瞬间保存成pdf随时随地查看 不需要上网
还支持api
var pdf = require('pdfcrowd');
// create an API client instance
var client = new pdf.Pdfcrowd("username", "apikey");
// convert an HTML string and send the generated PDF in a HTTP response
client.convertHtml('<html>regular HTML code</html>', pdf.sendHttpResponse(response));
// convert a web page and save it to a file
client.convertURI('http://www.google.com', pdf.saveToFile("google_com.pdf"));
// convert a local HTML file:
client.convertFile('/local/file.html', pdf.saveToFile("file.pdf"));
2 回复
分享个不用插件的方法: 当前页鼠标右击,选择打印
,在目标打印机那里选择更改
,选择另存为PDF
,点击保存
,后续操作就很简单了;不过只支持单页保存为PDF
@winterZhao 你说的这个我也知道,只不过保存的格式非常差,看起来相当不爽。对比下你就知道了