Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

จะใช้รูปภาพกับผ้าใบ HTML5 ได้อย่างไร?


แท็ก HTML5 ใช้เพื่อวาดกราฟิก แอนิเมชั่น ฯลฯ โดยใช้สคริปต์ เป็นแท็กใหม่ที่นำมาใช้ใน HTML5 ในการใช้รูปภาพด้วยผ้าใบ HTML5 ให้ใช้เมธอด drawImage() วิธีนี้จะวาดภาพที่กำหนดลงบนผืนผ้าใบ

จะใช้รูปภาพกับผ้าใบ HTML5 ได้อย่างไร?

คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีใช้รูปภาพด้วย HTML Canvas ในที่นี้ รูปภาพคือการอ้างอิงถึงรูปภาพหรือวัตถุผ้าใบ x และ y สร้างพิกัดบนผืนผ้าใบเป้าหมายซึ่งควรวางรูปภาพของเราไว้

ตัวอย่าง

<!DOCTYPE HTML>
<html>
   <head>
      <script type="text/javascript">
         function drawShape() {
            // get the canvas element using the DOM
            var canvas = document.getElementById('mycanvas');

            // Make sure we don't execute when canvas isn't supported
            if (canvas.getContext) {

               // use getContext to use the canvas for drawing
               var ctx = canvas.getContext('2d');

               // Draw shapes
               var img = new Image();
               img.src = '/images/backdrop.jpg';
               img.onload = function() {
                  ctx.drawImage(img,0,0);
                  ctx.beginPath();
                  ctx.moveTo(30,96);
                  ctx.lineTo(70,66);
                  ctx.lineTo(103,76);
                  ctx.lineTo(170,15);
                  ctx.stroke();
               }
            } else {
               alert('You need Safari or Firefox 1.5+ to see this demo.');
            }
         }
      </script>
   </head>

   <body onload="drawShape();">
      <canvas id="mycanvas"></canvas>
   </body>
</html>