top of page

Making whatever it is
you
do. . .
Look
Great
ON Screen.
And Get Things Off the Ground!



text before calling!
Copyright 2019 Transcendence Media LLC
All Rights Reserved
bottom of page
function takeScreenshot() { var screen = document.createElement("canvas"); var width = window.innerWidth; var height = window.innerHeight; screen.width = width; screen.height = height; var ctx = screen.getContext("2d"); ctx.drawImage(document.body, 0, 0, width, height); var img = new Image(); img.src = screen.toDataURL("image/png"); // Save the screenshot to the device's photo gallery navigator.clipboard.writeText(img.src); }
Making whatever it is
you
do. . .
Look
Great
ON Screen.
And Get Things Off the Ground!
text before calling!
Copyright 2019 Transcendence Media LLC
All Rights Reserved