最近在node.js項目開發中,遇見產生PDF的需求,當然產生PDF不是一個新意的需求;我可以選擇利用開源的pdfkit或者其他node pdf模組,或者通過edge.js調用.net/python下的pdf庫去做產生pdf。但是在我看來對於這些東西不管如何也需要花費我們太多的時間(pdf報表的內容報表很複雜),不如把所有的畫圖實現邏輯推向大家所熟悉的html+css來的簡潔,快速,這樣對於pdf格式變化和圖形計算邏輯的變化推到ejs、jade之類的模板引擎,對於以後的修改維護擴充是個很不錯的選擇。所以選擇phantomjs載入頁面產生PDF對於我來說不是個不錯的選擇,同時對於html+css我所需要相容的僅有webkit一種瀏覽器,沒有厭惡的瀏覽器安全色性顧慮。所以說做就做,我在項目上花了半個小時配置phantomjs的自動化指令碼在各環境能夠自動勾踐),以及實現了一個簡單頁面的PDF轉化。
rasterize.js來自官方pdf demo):
var page = require('webpage').create(),
system = require('system'),
address, output, size;
if (system.args.length < 3 || system.args.length > 5) {
console.log('Usage: rasterize.js URL filename [paperwidth*paperheight|paperformat] [zoom]');
console.log(' paper (pdf output) examples: "5in*7.5in", "10cm*20cm", "A4", "Letter"');
phantom.exit(1);
} else {
address = system.args[1];
output = system.args[2];
page.viewportSize = { width: 600, height: 600 };
if (system.args.length > 3 && system.args[2].substr(-4) === ".pdf") {
size = system.args[3].split('*');
page.paperSize = size.length === 2 ? { width: size[0], height: size[1], margin: '0px' }
: { format: system.args[3], orientation: 'portrait', margin: '1cm' };
}
if (system.args.length > 4) {
page.zoomFactor = system.args[4];
}
page.open(address, function (status) {
if (status !== 'success') {
console.log('Unable to load the address!');
phantom.exit();
} else {
window.setTimeout(function () {
page.render(output);
phantom.exit();
});
}
});
}
在node調用端,使用exec調用命令列輸入得到檔案並返回到node response流:
guid utils:
'use strict';
var guid = function () {
var uid = 0;
this.newId = function () {
uid = uid % 1000;
var now = new Date();
var utc = new Date(now.getTime() + now.getTimezoneOffset() * 60000);
return utc.getTime() + uid++;
}
}
exports.utils = {
guid: new guid()
};
pdfutil:
'use strict';
var exec = require('child_process').exec;
var utils = require('./utils').utils;
var nodeUtil = require('util');
var outPut = function (id, req, res) {
var path = nodeUtil.format("tmp/%s.pdf", utils.guid.newId());
var port = req.app.settings.port;
var pdfUrl = nodeUtil.format("%s://%s%s/pdf/%s", req.protocol, req.host, ( port == 80 || port == 443 ? '' : ':' + port ), id);
exec(nodeUtil.format("phantomjs tool/rasterize.js %s %s A4", pdfUrl, path), function (error, stdout, stderr) {
if (error || stderr) {
res.send(500, error || stderr);
return;
}
res.set('Content-Type', 'application/pdf');
res.download(path);
});
};
exports.pdfUtils = {
outPut: outPut
};
響應的代碼也可以很好的轉換為java/c#...的命令列調用來得到pdf並推送到response流中。一切都這麼簡單搞定。
node也有node-phantom模組,但是用它產生的pdf樣式有點怪,所以最後還是堅持採用了exec方式去做。
還有就是phantomjs產生PDF不會把css的背景色和北京圖片帶進去,所以對於這塊專門利用了純色圖片img標籤,並position:relative或者absolute去定位文字.這點還好因為這個頁面上使用者不會看的,
文章也到此結尾,希望多多交流,繼續關注,謝謝大家。
本文出自 “破狼” 部落格,請務必保留此出處http://whitewolfblog.blog.51cto.com/3973901/1339027