var canvas=document.getElementById("canvas");
var cxt= canvas.getContext("2d");
var img=new Image();
img.src="cat.jpg";
cxt.drawImage(img,10,10,490,382);
/*
The test found a problem. The picture is often not visible when the browser is executed for the first time.
The picture can only be seen after refreshing once. Does anyone know the reason for this? Could you please tell me. Ah
.Hehe
*/