我在画布中有一些图像数据,现在我需要取图像的左半部分,将其翻转并应用到右侧,就像镜像效果一样。
示例,由此:
对此:
我做到了这一点(我已经准备好图像数据):
ctx.drawImage(this, 0, 0, 960, 540);
var imgData = ctx.getImageData(0,0,960,540);
// loop through the data and apply mirror ??
宽度和高度是已知的。有任何想法吗?
我在画布中有一些图像数据,现在我需要取图像的左半部分,将其翻转并应用到右侧,就像镜像效果一样。
示例,由此:
对此:
我做到了这一点(我已经准备好图像数据):
ctx.drawImage(this, 0, 0, 960, 540);
var imgData = ctx.getImageData(0,0,960,540);
// loop through the data and apply mirror ??
宽度和高度是已知的。有任何想法吗?
for(var y = 0; y < height; y++) {
for(var x = 0; x < width / 2; x++) { // divide by 2 to only loop through the left half of the image.
var offset = ((width* y) + x) * 4; // Pixel origin
// Get pixel
var r = data[offset];
var g = data[offset + 1];
var b = data[offset + 2];
var a = data[offset + 3];
// Calculate how far to the right the mirrored pixel is
var mirrorOffset = (width - (x * 2)) * 4;
// Get set mirrored pixel's colours
data[offset + mirrorOffset] = r;
data[offset + 1 + mirrorOffset] = g;
data[offset + 2 + mirrorOffset] = b;
data[offset + 3 + mirrorOffset] = a;
}
}
我没有对此进行测试,但它应该(或多或少)工作,或者至少让你知道如何去做。