以html2canvas制作頁面截圖列印
網上有很多截圖的Service, 如webkit2png或khtml2png,但始終也要經過第三方處理,對於一些內部應用好像不太方便。
HTML2CANVAS是完全以Client Side Javascript 來將網頁截圖,由於需要用到HTML5的CANVAS ELEMENT,所以對瀏覽器有一定要求,例如 IE9以下並不支援 (但不知道如果用EXCANVAS可否彌補瀏覽器支援上的不足,稍後再試吧)。
HTML2CANVAS
官方:http://html2canvas.hertzen.com/
下載:https://github.com/niklasvh/html2canvas
開始編寫時在官方下載了0.34版本,使用時發現 IE9可正常運行,但Chrome只能於ready時執行,而無法由button click event執行。後來改用了0.4版本,卻輪到 IE不行。接著發現其中的renderElement function 中有null value的error, 修改後IE終於亦可正常運作了。
紅色為html2canvas.js新增部份1
2
3
4case "INPUT":
if (/^(text|url|email|submit|button|reset)$/.test(element.type) && (element.value || element.placeholder || "").length > 0){
renderFormValue(element, bounds, stack);
}
亦可下載修改後的html2canvas.js :
https://docs.google.com/file/d/0B9ookpf4ArZcMHhqemVkTzBCVlU/edit?usp=sharing
例子: index.html(http://plnkr.co/edit/VR30GO)
1 |
|
File Download (include index.html, html2canvas.js, jquery.js):
https://docs.google.com/file/d/0B9ookpf4ArZcSlB2OXN4c1pGQ00/edit?usp=sharing