Skip to content

Instantly share code, notes, and snippets.

@jemsgit
Created May 29, 2018 07:58
Show Gist options
  • Save jemsgit/4eb6e82873b5dd2a64a87ec804fc0ba2 to your computer and use it in GitHub Desktop.
Save jemsgit/4eb6e82873b5dd2a64a87ec804fc0ba2 to your computer and use it in GitHub Desktop.
function mousePressed() {
saveFrames('out', 'png', 1, 25, function(data) {
var img = document.createElement('img');
img.src = data[1].imageData;
document.body.appendChild(img);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment