Skip to content

Instantly share code, notes, and snippets.

@tanrax
Created February 28, 2014 20:47
Show Gist options
  • Save tanrax/9279571 to your computer and use it in GitHub Desktop.
Save tanrax/9279571 to your computer and use it in GitHub Desktop.
JS: Canvas image (imagen)
var c = document.getElementById("lienzo");
var ctx = c.getContext("2d");
var imageObj = new Image();
imageObj.src = 'img_the_scream.jpg';
imageObj.onload = function() {
ctx.drawImage(imageObj, 69, 50);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment