欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HTML5 Canvas实现图片缩放、翻转、颜色渐变的代码示例

程序员文章站 2023-08-17 21:22:28
这篇文章主要介绍了HTML5 Canvas实现图片缩放、翻转、颜色渐变的代码示例,充分利用到了坐标的操作,说明都写在代码注释里了很简明,需要的朋友可以参考下... 16-02-28...

翻转、移动、平移、放大、缩小

xml/html code复制内容到剪贴板
  1. var canvas = document.getelementbyid('canvas');   
  2. if (canvas.getcontext) {   
  3.     var context = canvas.getcontext('2d');   
  4.     // 放大与缩小   
  5.     context.beginpath();   
  6.     context.strokestyle = "#000000";   
  7.     context.strokerect(10,10,150,100);   
  8.         
  9.     // 放大3倍   
  10.     context.scale(3,3);   
  11.     context.beginpath();   
  12.     context.strokestyle = '#cccccc';   
  13.     context.strokerect(10,10,150,100)   
  14.         
  15.     // 缩小   
  16.     context.scale(0.5,0.5);   
  17.     context.beginpath();   
  18.     context.strokestyle = '#cccccc';   
  19.     context.strokerect(10,10,150,100)   
  20.         
  21.      // 翻转   
  22.     var img = new image();   
  23.     img.src = 'images/1.jpg';   
  24.     img.onload = function(){   
  25.         context.drawimage(img, 10,10);           
  26.         context.scale(1, -1);   
  27.         context.drawimage(img, 0, -500);   
  28.     }   
  29.     // 平移   
  30.     context.beginpath();   
  31.     context.strokestyle = '#000000';   
  32.     context.strokerect(10,101,150,100);   
  33.     // x移动 50  y 移动100   
  34.     context.translate(50,100);   
  35.     context.beginpath();   
  36.     context.strokestyle = '#cccccc';   
  37.     context.strokerect(10,10,150,100);   
  38.     // 旋转   
  39.     context.beginpath();   
  40.     context.strokestyle = '#000000';   
  41.     context.strokerect(200,50,100,50);   
  42.     // 默认旋转是根据0,0中心,使用translate可以按照自己的设置的中心旋转   
  43.     context.translate(250,75);   
  44.        
  45.     context.rotate(45 * math.pi /180);   
  46.     context.translate(-250, -75);   
  47.   
  48.     context.beginpath();   
  49.     context.strokestyle = '#cccccc';   
  50.     context.strokerect(200,50,100,50);   
  51.         
  52.     // transform 矩阵   
  53.     context.beginpath();   
  54.     context.strokestyle = '#000000';   
  55.     context.strokerect(10,10,150,100);   
  56.        
  57.     context.transform(3,0,0,3,0,0);   
  58.     context.beginpath();   
  59.     context.strokestyle = '#cccccc';   
  60.     context.strokerect(10,10,150,100);   
  61.         
  62. }  

渐变、图像组合效果、颜色翻转

xml/html code复制内容到剪贴板
  1. var canvas = document.getelementbyid('canvas');   
  2. if (canvas.getcontext) {   
  3.     var context = canvas.getcontext('2d');   
  4.     // 线性绘制渐变   
  5.     var grd = context.createlineargradient(0,0,200,100);   
  6.     // postion 必须是0.1-1.0之间的竖直,表示渐变中颜色的地点相对地位,color表示颜色   
  7.     grd.addcolorstop(0.1, "#00ff00");   
  8.     grd.addcolorstop(0.8, "#ff0000");   
  9.        
  10.     context.fillstyle = grd;   
  11.     context.fillrect(0,0, 200,100);   
  12.     // 径向渐变   
  13.     var grd = context.createradialgradient(100,100,10,100,100,50);   
  14.     grd.addcolorstop(0.1, "#00ff00");   
  15.     grd.addcolorstop(0.8, '#ff0000');   
  16.     context.fillstyle = grd;   
  17.     context.fillrect(0,0,200,200);   
  18.     // 图像组合效果   
  19.      context.fillstyle = '#00ff00';   
  20.      context.fillrect(10,10,50,50);   
  21.      // 新绘图   
  22.      //context.globalcompositeoperation  = "source-over";   
  23.      // 只绘制新内容,删除其他所有内容   
  24.      context.globalcompositeoperation = 'copy';   
  25.      // 图形重叠的地方,其颜色值相减后决定   
  26.      context.globalcompositeoperation = 'darker';   
  27.      // 画布上已经有的内容只会载和其他图形重叠的地方保留   
  28.      context.globalcompositeoperation = 'destination-atop';   
  29.      // 参考 http://www.w3school.com.cn/htmldom/prop_canvasrenderingcontext2d_globalcompositeoperation.asp   
  30.      context.beginpath();   
  31.      context.fillstyle = '#ff0000';   
  32.      context.arc(50,50,30,0, 2 * math.pi);   
  33.      context.fill();   
  34.         
  35.      // 颜色翻转   
  36.      var img = new image();   
  37.           
  38.      img.src = 'images/1.jpg';   
  39.      img.onload = function(){   
  40.          context.drawimage(img, 0,0, 1, 1);   
  41.          var imgdata = context.getimagedata(0,0, 1,1);   
  42.          var pixels = imgdata.data;   
  43.          console.log(pixels);   
  44.          for(var i = 0n = pixels.length; i < n; i+=4) {   
  45.              pixels[i] = 255 - pixels[i];   
  46.              pixels[i+1] = 255 - pixels[i + 1];   
  47.              pixels[i+2] = 255 - pixels[i + 2];   
  48.          }   
  49.          context.putimagedata(imgdata, 250, 0);   
  50.      }   
  51. }