saveFrame

How to save an image?

sketch.js

/**
 * A Simple sketch that demonstrates the saving of images
 */
var i = 0; // this is just for displaying things
var a = 0;// this is just for displaying things
function setup() {
  //executed once
var canvas = createCanvas(400, 400);
canvas.parent('sketch');
}

function draw() {
  // draw something to save
  background(255,10);
  noFill();
  arc(width / 2, height / 2, i%width, i%width, a%360, a%360*-1, OPEN);
  a++;
  i += 5;

  // now here it is
  // we can save images based on events like counting up within draw
  if(frameCount%1000 === 999){
    saveCanvas("img","png");
  }
}

function keyTyped(){
// or we can use a keyTyped function. Try it out if you type the key s
// it will save an image for you
  if(key == "s"){
    console.log("s");
    saveCanvas("img","png");
  }
}

index.html

<!doctype html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>{page.title}</title>
    <meta name="description" content="something">
    <meta name="author" content="me">
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
  </head>
  <body>
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.17/p5.min.js"></script>
    <!-- <script type="text/javascript" src="sketch-01.js"></script> -->
    <script type="text/javascript" src="sketch.js"></script>
    <div id="sketch"></div>
  </body>
</html>