Home > Web Front-end > H5 Tutorial > How to draw pictures to canvas using html5 and js

How to draw pictures to canvas using html5 and js

不言
Release: 2018-06-22 15:27:43
Original
2399 people have browsed it

This article mainly introduces the method of drawing pictures to canvas in js html5, involving related techniques of operating html5 elements. Friends in need can refer to it

The example of this article describes the method of drawing pictures to canvas in js html5 . Share it with everyone for your reference. The specific implementation method is as follows:

<!DOCTYPE html>
<html>
<body>
<canvas id="myCanvas" width="200" height="100"
style="border:1px solid #c3c3c3;">
Your browser does not support the HTML5 canvas tag.
</canvas>
<script type="text/javascript">
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
var img=new Image();
img.onload = function(){
ctx.drawImage(img,0,0);
};
img.src="img_flwr.png";
</script>
</body>
</html>
Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone’s study. More related content Please pay attention to PHP Chinese website!

Related recommendations:

Use SurfaceView to achieve rain and snow animation effects

About event processing of HTML5 Canvas

The above is the detailed content of How to draw pictures to canvas using html5 and js. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Where is js written?
From 1970-01-01 08:00:00
0
0
0
js addClass not working
From 1970-01-01 08:00:00
0
0
0
js file code not found
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template