[前端] canvas save、restore及图片组合

一、save()和restore()

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.fillStyle="red";
ctx.fillRect(20,20,75,50);

ctx.save();  // 保存当前环境的状态  ctx.globalAlpha=0.2;
ctx.fillStyle="green";
ctx.fillRect(50,50,75,50);

ctx.restore();  // 返回之前保存过的路径状态和属性 ctx.fillStyle="blue";
ctx.fillRect(80,80,75,50);

[前端] canvas save、restore及图片组合_第1张图片


二、globalCompositeOperation 属性设置或返回如何将一个源(新的)图像绘制到目标(已有)的图像上。

描述
source-over 默认。在目标图像上显示源图像。
source-atop 在目标图像顶部显示源图像。源图像位于目标图像之外的部分是不可见的。
source-in 在目标图像中显示源图像。只有目标图像内的源图像部分会显示,目标图像是透明的。
source-out 在目标图像之外显示源图像。只会显示目标图像之外源图像部分,目标图像是透明的。
destination-over 在源图像上方显示目标图像。
destination-atop 在源图像顶部显示目标图像。源图像之外的目标图像部分不会被显示。
destination-in 在源图像中显示目标图像。只有源图像内的目标图像部分会被显示,源图像是透明的。
destination-out 在源图像外显示目标图像。只有源图像外的目标图像部分会被显示,源图像是透明的。
lighter 显示源图像 + 目标图像。
copy 显示源图像。忽略目标图像。
source-over 使用异或操作对源图像与目标图像进行组合。

1、source-over (红色区域是目标图像,蓝色区域是源图像)

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.fillStyle="red";
ctx.fillRect(20,20,75,50);
ctx.globalCompositeOperation="source-over";
ctx.fillStyle="blue";
ctx.fillRect(50,50,75,50);
[前端] canvas save、restore及图片组合_第2张图片


2、source-atop

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.fillStyle="red";
ctx.fillRect(20,20,75,50);
ctx.globalCompositeOperation="source-atop";
ctx.fillStyle="blue";
ctx.fillRect(50,50,75,50);



3、source-in

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.fillStyle="red";
ctx.fillRect(20,20,75,50);
ctx.globalCompositeOperation="source-in";
ctx.fillStyle="blue";
ctx.fillRect(50,50,75,50);



4、source-out

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.fillStyle="red";
ctx.fillRect(20,20,75,50);
ctx.globalCompositeOperation="source-out";
ctx.fillStyle="blue";
ctx.fillRect(50,50,75,50);


5、lighter


var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.fillStyle="red";
ctx.fillRect(20,20,75,50);
ctx.globalCompositeOperation="lighter";
ctx.fillStyle="blue";
ctx.fillRect(50,50,75,50);

[前端] canvas save、restore及图片组合_第3张图片


6、copy

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.fillStyle="red";
ctx.fillRect(20,20,75,50);
ctx.globalCompositeOperation="copy";
ctx.fillStyle="blue";
ctx.fillRect(50,50,75,50);

[前端] canvas save、restore及图片组合_第4张图片

7、destination-atop ( 蓝色区域是目标图片,红色区域是源图片 )

var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");

ctx.fillStyle="red";
ctx.fillRect(20,20,75,50);
ctx.globalCompositeOperation="destination-atop";
ctx.fillStyle="blue";
ctx.fillRect(50,50,75,50);



先写到这里,谢谢关注!

你可能感兴趣的:([前端] canvas save、restore及图片组合)