gpt4 book ai didi

javascript - html5 Canvas 背景图片

转载 作者:太空宇宙 更新时间:2023-11-04 14:19:26 25 4
gpt4 key购买 nike

当我将 img 写入 Canvas 的背景时,它可以工作,但如果我刷新它就会消失,请帮助这是我页面中一个非常烦人的错误。这是正在执行此操作的示例代码位

<img id="back" src="back.jpg" alt="background" width="200" height="300">
<canvas id="myCanvas" width="300" height="400" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<script>

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
var img=document.getElementById("back");
ctx.drawImage(img,0,0);


ctx.moveTo(20,375);
ctx.lineTo(150,375);
ctx.stroke();

ctx.moveTo(70,375);
ctx.lineTo(70,50);
ctx.stroke();

ctx.moveTo(70,120);
ctx.lineTo(130,50);
ctx.stroke();

ctx.moveTo(70,50);
ctx.lineTo(180,50);
ctx.stroke();

ctx.moveTo(180,50);
ctx.lineTo(180,100);
ctx.stroke();


</script>

最佳答案

当您的脚本执行时,图像可能尚未加载。从图像的 onload 事件运行绘图代码,以确保它仅在图像加载后发生。

关于javascript - html5 Canvas 背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20036858/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com