This article shares the specific code of JavaScript canvas to load pictures for your reference. The specific content is as follows Code: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Using image</title> <style type="text/css"> * { /* margin: 0; padding: 0; */ box-sizing: border-box; } canvas { border-width: 1px; border-color: #000000; border-style: solid; } </style> </head> <body> <canvas id="canvas"></canvas> <div> <input type="file" accept="image/*" /> </div> <script type="text/javascript"> window.onload = (event) => { main() } function main() { const canvas = document.getElementById("canvas"); const ctx = canvas.getContext("2d"); const inputFile = document.querySelector("input[type=file]"); inputFile.onchange = (event) => { const files = event.target.files; if (files.length > 0) { const file = files[0]; // First file console.log(file); const image = new Image(); image.src = URL.createObjectURL(file); image.onload = function(event) { // console.log(event, this); URL.revokeObjectURL(this.src); canvas.width = image.width; canvas.height = image.height; ctx.drawImage(image, 0, 0); } } } } </script> </body> </html> Reference: Link The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Introduction to ufw firewall in Linux
This article shares the specific code of js to re...
Table of contents Question: Case (1) fork before ...
Find the problem Today I am going to study the to...
Part 1 Overview of SSH Port Forwarding When you a...
Copy code The code is as follows: <!DOCTYPE ht...
register The front-end uses axios in vue to pass ...
#1. Download # #2. Unzip to local and modify nece...
1. Installation package preparation VMware-player...
Introduction In the previous article, we installe...
Recently, I needed to test the zoom video confere...
1. Introduction to TypeScript The previous articl...
Table of contents Boolean Type Number Types Strin...
I struggled with a problem for a long time and re...
Starting from MySQL 5.7, many security updates ha...
mysql between boundary range The range of between...