私はキャンバスに不慣れです。次のコードを使用して、別の画像からキャンバスに画像を挿入していました。コードを使用してdivから画像を作成しようとすると
<!DOCTYPE html><html>
<head>
<title>test</title>
<script type="text/javascript">
var colour="#ccc",bgcolour="#fff";
function paint(hhh){
canvas = document.getElementById('canvas');
ctx = canvas.getContext('2d');
var img=document.getElementById('mine');
ctx.drawImage(img,0,0);
}
</script>
</head>
<body onload="paint('scribble');" >
<canvas id="canvas" style="border:solid 1px;" width="400" height="400">g</canvas> <div id="mine">canvas</div>
</body>
</html>
動作していません。 私の質問は、別の画像の代わりにdivから画像を描画する方法ですか?