var canvas = document.getElementById("canvas");
var contexto = canvas.getContext("2d");
contexto.fillStyle = "dimgray";
contexto.fillRect(0,0, canvas.width, canvas.height);
contexto.fillStyle = "lightgray";
contexto.fillRect(0,0, canvas.width, 80);
contexto.fillStyle = "lightgray";
contexto.fillRect(0,380, canvas.width,100);
contexto.fillStyle = "white";
for(var i = 0; i <25; i++)
{
contexto.fillRect(i*30-5, 185, 20, 4);
contexto.fillRect(i*30-5, 280, 20, 4);
}
var imagem = new image();
imagem.src = "http://a-dilminha.appspot.com/dilminha.png"
var x = 320;
var y = 400;
imagem.onload = function(){
//a imagem não aparece
contexto.drawImage(imagem, x, y, imagem.width, imagem.height)
}
The image does not appear or loads, I tried everything and did not find an answer.