我想从原始图像中创建拼图图像,这意味着将图像切割成 9 块(3x3),然后打乱并存储为新图像。有谁知道哪种方法最好这样做以及如何实现?也许与 CamanJS?有人有示例代码吗?
问问题
7458 次
1 回答
15
Canvas 可以使用context.drawImage
.
context.drawImage
允许您从原始图像中剪裁 9 个子片段,然后在画布上的任何位置绘制它们。
drawImage 的剪辑版本采用以下参数:
要剪切的图像:
img
剪辑开始的原始图像中的[clipLeft, clipTop]
[clipWidth, clipHeight]要从原始图像中剪切的子图像的大小
Canvas 上的[drawLeft, drawTop]剪辑的子图像将开始绘制
[drawWidth, drawHeight]是要在画布上绘制的子图像的缩放大小
如果
drawWidth==clipWidth
和drawHeight==clipHeight
,子图像将以与原始图像相同的大小绘制。如果
drawWidth!==clipWidth
和drawHeight!==clipHeight
,子图像将被缩放然后绘制。
这是示例代码和一个 Demo,它随机将剪裁的部分绘制到画布上。它打乱一个数组来定义碎片的随机位置,然后使用drawImage
.
var canvas=document.getElementById("canvas");
var ctx=canvas.getContext("2d");
var cw=canvas.width;
var ch=canvas.height;
var rows=3;
var cols=3;
var img=new Image();
img.onload=start;
img.src="https://dl.dropboxusercontent.com/u/139992952/multple/sailboat.png";
function start(){
var iw=canvas.width=img.width;
var ih=canvas.height=img.height;
var pieceWidth=iw/cols;
var pieceHeight=ih/rows;
var pieces = [
{col:0,row:0},
{col:1,row:0},
{col:2,row:0},
{col:0,row:1},
{col:1,row:1},
{col:2,row:1},
{col:0,row:2},
{col:1,row:2},
{col:2,row:2},
]
shuffle(pieces);
var i=0;
for(var y=0;y<rows;y++){
for(var x=0;x<cols;x++){
var p=pieces[i++];
ctx.drawImage(
// from the original image
img,
// take the next x,y piece
x*pieceWidth, y*pieceHeight, pieceWidth, pieceHeight,
// draw it on canvas based on the shuffled pieces[] array
p.col*pieceWidth, p.row*pieceHeight, pieceWidth, pieceHeight
);
}}
}
function shuffle(a){
for(var j, x, i = a.length; i; j = Math.floor(Math.random() * i), x = a[--i], a[i] = a[j], a[j] = x);
return a;
};
body{ background-color: ivory; padding:10px; }
#canvas{border:1px solid red;}
<canvas id="canvas" width=300 height=300></canvas>
于 2014-11-21T18:00:49.920 回答