Last active
September 16, 2015 06:19
-
-
Save tingwei628/9277c8026c5be92fb80e to your computer and use it in GitHub Desktop.
Html converts to img (將html 輸出成img格式)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--baseURL 就是 輸出的img src 連結--> | |
<!--該Html 引用<script type="text/javascript" src="http://html2canvas.hertzen.com/build/html2canvas.js"></script>--> | |
<!--Ext.getCmp('wincv-1110').el.dom ,即是該html的DOM--> | |
<!--參考 html2canvas : http://html2canvas.hertzen.com/--> | |
<script type="text/javascript" src="http://html2canvas.hertzen.com/build/html2canvas.js"></script> | |
<script> | |
html2canvas(Ext.getCmp('wincv-1110').el.dom,{onrendered:function(canvas){ | |
var baseURL = canvas.toDataURL("img/png"); | |
console.log(baseURL); | |
}}); | |
</script> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment