Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. function saveCanvas(canvas) {
  2. var image = canvas.toDataURL("image/png",1)//.replace("image/png", "image/octet-stream");
  3. // window.open(null, '_blank')
  4. window.setTimeout(()=>{
  5. var win = window.open();
  6. win.document.write('<img src="' + image + '" style="-webkit-user-select: none;background-position: 0px 0px, 10px 10px;background-size: 20px 20px;background-image:linear-gradient(45deg, #eee 25%, transparent 25%, transparent 75%, #eee 75%, #eee 100%),linear-gradient(45deg, #eee 25%, white 25%, white 75%, #eee 75%, #eee 100%);"/>')
  7. win.document.body.style.backgroundColor = 'black';
  8. win.document.body.style.margin = 0;
  9. win.document.body.style.display = 'flex';
  10. win.document.body.style.alignItems = 'center';
  11. win.document.body.style.justifyContent = 'center';
  12. })
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement