使用多种颜色在程序上填充形状

时间:2015-03-13 00:10:17

标签: javascript canvas paperjs

我正在使用node,js等制作应用。我想填充我可以通过数据点创建的自定义形状或其他具有不同分层颜色的格式。例如,我有一个三角形。我想用红色填充底部1/3,用蓝色填充中间1/3,用绿色填充顶部1/3。我该怎么做呢?

我正在看Paper.js和基本画布,但它们似乎只有单色填充。

感谢您的任何建议!

2 个答案:

答案 0 :(得分:4)

我知道答案已被接受,但我想为未来的读者提供一个非常简单的方法。作为奖励,使用线性渐变 -

自动计算每个部分的高度并且速度很快

结果将是

snap

代码和演示

var ctx = document.querySelector("canvas").getContext("2d"),
    grad = ctx.createLinearGradient(0, 0, 0, 150);

grad.addColorStop(0, "red");     // start of red
grad.addColorStop(1/3, "red");   // end of red at 1/3

grad.addColorStop(1/3, "gold");  // start of gold at 1/3
grad.addColorStop(2/3, "gold");  // end of gold at 2/3

grad.addColorStop(2/3, "blue");  // start of blue at 2/3
grad.addColorStop(1, "blue");    // end of blue at 3/3

// Fill a triangle:
ctx.moveTo(75, 0); ctx.lineTo(150, 150); ctx.lineTo(0, 150);
ctx.fillStyle = grad;
ctx.fill();
<canvas/>

使用合成技术的动画版

var ctx = document.querySelector("canvas").getContext("2d"),
    grad = ctx.createLinearGradient(0, 0, 0, 150),
    step = grad.addColorStop.bind(grad), // function reference to simplify
    dlt = -3, y = 150;

step(0, "red");     // start of red
step(1/3, "red");   // end of red at 1/3
step(1/3, "gold");  // start of gold at 1/3
step(2/3, "gold");  // end of gold at 2/3
step(2/3, "blue");  // start of blue at 2/3
step(1, "blue");    // end of blue at 3/3

// store a triangle path - we'll reuse this for the demo loop
ctx.moveTo(75, 0); ctx.lineTo(150, 150); ctx.lineTo(0, 150);

(function loop() {
  ctx.globalCompositeOperation = "copy";  // will clear canvas with next draw

  // Fill the previously defined triangle path with any color:
  ctx.fillStyle = "#000";  // fill some solid color for performance
  ctx.fill();
  
  // draw a rectangle to clip the top using the following comp mode:
  ctx.globalCompositeOperation = "destination-in";
  ctx.fillRect(0, y, 150, 150 - y);

  // now that we have the shape we want, just replace it with the gradient:
  // to do that we use a new comp. mode
  ctx.globalCompositeOperation = "source-in";
  ctx.fillStyle = grad;
  ctx.fillRect(0, 0, 150, 150);
  
  y += dlt; if (y <= 0 || y >= 150) dlt = -dlt;  
  requestAnimationFrame(loop);
})();
<canvas/>

动画的缓存渐变图像(推荐)

var ctx = document.querySelector("canvas").getContext("2d"),
    tcanvas = document.createElement("canvas"),    // to cache triangle
    tctx = tcanvas.getContext("2d"),
    grad = tctx.createLinearGradient(0, 0, 0, 150),
    step = grad.addColorStop.bind(grad), // function reference to simplify
    dlt = -3, y = 150;

step(0, "red");     // start of red
step(1/3, "red");   // end of red at 1/3
step(1/3, "gold");  // start of gold at 1/3
step(2/3, "gold");  // end of gold at 2/3
step(2/3, "blue");  // start of blue at 2/3
step(1, "blue");    // end of blue at 3/3

// draw triangle to off-screen canvas once.
tctx.moveTo(75, 0); tctx.lineTo(150, 150); tctx.lineTo(0, 150);
tctx.fillStyle = grad; tctx.fill();

(function loop() {
  ctx.clearRect(0, 0, 150, 150);

  // draw clipped version of the cached triangle image
  if (150-y) ctx.drawImage(tcanvas, 0, y, 150, 150 - y, 0, y, 150, 150 - y);

  y += dlt; if (y <= 0 || y >= 150) dlt = -dlt;  
  requestAnimationFrame(loop);
})();
<canvas/>

您可以使用渐变线来改变方向,这决定了渐变的角度。

// vertical 
ctx.createLinearGradient(0, 0, 0, 150); // x1, y1, x2, y2

// hortizontal
ctx.createLinearGradient(0, 0, 150, 0); // x1, y1, x2, y2

// 45° degrees
ctx.createLinearGradient(0, 0, 150, 150); // x1, y1, x2, y2

答案 1 :(得分:1)

您可以通过将形状(例如三角形)放入剪裁区域来使用原生html画布。

这意味着您随后进行的任何填充都不会在三角形之外绘制。

您所要做的就是:

  • 画三角形

  • 将其设为裁剪区域

  • 在三角形的顶部1/3上绘制一个绿色矩形。 别担心 ...矩形将被裁剪为仅出现在三角形内部。

  • 在三角形的中间1/3上绘制一个蓝色矩形

  • 在三角形的底部1/3上绘制一个红色矩形

以下是示例代码和演示:

&#13;
&#13;
var canvas=document.getElementById("canvas");
var ctx=canvas.getContext("2d");
var cw=canvas.width;
var ch=canvas.height;

var points=[];
points.push({x:100,y:50});
points.push({x:150,y:150});
points.push({x:50,y:150});
points.push({x:100,y:50});

drawPoints(points);

function drawPoints(pts){
  var minY= 100000;
  var maxY=-100000;
  ctx.save();
  ctx.beginPath();
  for(var i=0;i<pts.length;i++){
    var p=pts[i];
    if(i==0){
      ctx.moveTo(p.x,p.y);
    }else{
      ctx.lineTo(p.x,p.y);
    }
    if(p.y<minY){minY=p.y;}
    if(p.y>maxY){maxY=p.y;}
  }
  ctx.stroke();
  ctx.clip();

  var height=maxY-minY;
  ctx.fillStyle='green';
  ctx.fillRect(0,minY,cw,minY,height/3);
  ctx.fillStyle='blue';
  ctx.fillRect(0,minY+height/3,cw,height/3);
  ctx.fillStyle='red';
  ctx.fillRect(0,minY+height*2/3,cw,height/3);
  ctx.restore();
}
&#13;
body{ background-color: ivory; }
#canvas{border:1px solid red;}
&#13;
<canvas id="canvas" width=300 height=300></canvas>
&#13;
&#13;
&#13;