Let’s add a hero to our javascript arena. You’ll need a hero.png image

var heroImage = new Image();
heroImage.onload = function () {
	ctx.drawImage(heroImage, 474, 287);
};
heroImage.src = "images/hero.png";

Background Image

You can download this example.