Advertisement
Guest User

Untitled

a guest
Aug 27th, 2015
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $('#save_image_locally').click(function(){
  2.  
  3. html2canvas($('#picture_frame'),
  4. {
  5. onrendered: function (canvas) {
  6. var img = canvas.toDataURL("image/png");
  7. alert('Your image will open in a new window. Please right click the image and save.');
  8. window.open(img);
  9. }
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement