Skip to content

Instantly share code, notes, and snippets.

@afzafri
Created April 14, 2016 17:16
Show Gist options
  • Save afzafri/a12231752dadd72e24a0d9f95f8f9112 to your computer and use it in GitHub Desktop.
Save afzafri/a12231752dadd72e24a0d9f95f8f9112 to your computer and use it in GitHub Desktop.
save image function
<!-- codes -->
<div id="target">
<h1>Test print this</h1>
<div class='timetable'></div>
</div>
<button onclick="saveToImage()" class="saveImg">Save as Image</button>
<br><br>
<!-- codes -->
window.saveToImage = function() {
html2canvas(document.getElementById("target"), {
onrendered: function (canvas) {
var img = canvas.toDataURL();
window.open(img);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment