Canvas bitmap of image

The getImageData() method returns an ImageData object that copies the pixel data for the specified rectangle on a canvas. 

Let's see in the console the bitmap array of an image.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Canvas image-bitmap array </title>
    <style> canvas { border: 1px solid red;} </style>
  </head>
  <body>
    <h3>Canvas image-bitmap array</h3>
    <canvas id="myCanvas1" height="272" width="400"></canvas>
    <script>
        var canvas1 = document.getElementById("myCanvas1");
       var context1 = canvas1.getContext('2d');
       var image1 = new Image();
       image1.src = "images/prototype.png";
       image1.onload = function(){
          context1.drawImage(image1, 0, 0);
          /* now grab the ImageData object from the graphics context. This contains a 'bitmap' of every pixel in the image*/
          var imgData1 = context1.getImageData(0,0, canvas1.width, canvas1.height); /* ImageData*/
          console.log(imgData1)
          /*grab the image bitmap data array so we can iterate over it*/
          var pix = imgData1.data;
          console.log(pix);
       };
    </script>
  </body>
</html>

Tip: Copy the above piece of code and paste it directly into your editor. Save the file as exersice15.2.html in the folder "yourNameWEB2JS", and see the console output. You have to download the image prototype.png and save it in the folder yourNameWEB2JS/images.

Important Note: To do this activity using your local file system, you will need to use Firefox as your browser. Chrome will display an error due to security constraints.

For more information: https://www.w3schools.com/tags/canvas_getimagedata.asp