W3CAPI 实例工具箱
运行代码
源代码
<!DOCTYPE HTML> <html> <head> <meta charset="UTF-8"> </head> <body> <canvas id="myCanvas" width="200" height="180" style="border:1px solid #0D5BB3;"> 您的浏览器不支持HTML5 Canvas标签 </canvas> <img id="img" src="/static/resource/img/logo.png" style="display: none;" /> <script type="text/javascript"> var c=document.getElementById("myCanvas"); var ctx=c.getContext("2d"); //创建图像的dom对象,第一种方法 var img=new Image(); img.src="/static/resource/img/logo.png"; //创建图片的dom对象,第二种方法 //var img= document.getElementById("img"); ctx.drawImage(img,0,0); </script> </body> </html>
运行结果