我正在尝试从另一个域中检索图像,该域已配置为允许 CORS 并操纵像素,然后我想显示结果并能够操纵结果。我可以在我请求的图像上同时使用 getImageData 和 toDataURL,所以我知道服务器部分可以工作。但是,当我尝试将图像的 src 属性更改为画布中的 dataURL 时,我收到安全错误“跨源图像加载被跨源资源共享策略拒绝。”。
function manipulateImage(img, func) {
var canvas = document.createElement('canvas');
canvas.width = img.width;
canvas.height = img.height;
c = canvas.getContext('2d');
c.drawImage(img, 0, 0);
width = canvas.width;
height = canvas.height;
imageData = c.getImageData(0, 0, width, height);
y = 0;
while (y < height) {
x = 0;
while (x < width) {
var pixel = getPixel(imageData, x, y);
func(pixel);
setPixel(imageData, x, y, pixel);
x++;
}
y++;
}
c.putImageData(imageData, 0, 0);
console.log('done');
img.src = canvas.toDataURL();
}
$(function() {
img = new Image();
img.crossOrigin = '';
img.onload = function() {
document.body.appendChild(img);
}
img.src = 'https://choros-cognition-test.s3.amazonaws.com/geotiffs/X8pEm_cl3_sm16_ra15_style_warp.png'
$('#increase-button').on('click', function() {
manipulateImage(img, function(pixel) {
pixel[2] += 30;
});
});
});
奇怪的是,如果我在操作图像函数中将图像的 crossOrigin 属性重置为 null,那么它就可以工作。为什么是这样?
function manipulateImage(img, func) {
img.crossOrigin = null;
....