canvas修改圖片顏色例子

<!DOCTYPE html>
<html>
<head>
    <script type="text/javascript">
      var c, ctx,myImage;
      function displayImage() {
          myImage = new Image();
          myImage.src = "img/host2.png";
            c = document.getElementById("myCanvas");
            if (c.getContext) {
                ctx = c.getContext("2d");
                myImage.onload = function() {            
                    ctx.drawImage(myImage, 0, 0);
                }
            }
      }
      function getColorData(r) {
        imageD = ctx.getImageData(0, 0, myImage.width, myImage.height);
        var pdata = imageD.data;
        var colorArr=r.split(",");
        for (var j = 0; j < pdata.length; j+=4) {
            pdata[j] =colorArr[0];
            pdata[j + 1] =  colorArr[1];
            pdata[j + 2] = colorArr[2];
        }
        ctx.putImageData(imageD, 0, 0);
      }

      function noPhoto() {
        alert("Please put a .png file in this folder and name it kestral.png.");
      }
      var i = 0;
      function colorChange() {
          i++;
          var c = "0,255,0";
          switch (i%3) {
              case 1:
                  c = "255,0,0";
                  break;
              case 2:
                  c = "255,245,0";
                  break;
          }
          getColorData(c);
      }

    </script>
</head>

<body onload="displayImage()">
    <p>原始圖片:</p>
    <img id="myPhoto" src="./img/host2.png" onerror="noPhoto()">
    <p>Canvas圖片:</p>
    <canvas id="myCanvas" width="200" height="200"></canvas>
   <button id="btn" onclick="colorChange()">變顏色啦!</button>
</body>
</html> 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章