2 回答
TA贡献1828条经验 获得超13个赞
该过滤器适用于图像数据ImageData
。图像数据无法显示,因此需要转换为某种可显示的形式,例如画布。
您还需要从图像中获取图像数据。标准图像不允许访问像素,因此您需要将图像转换为画布以获取像素。
请注意,不安全的图像(跨域、本地文件存储)可能无法为您提供像素访问权限。如果您在请求中提供正确的CORS标头并且服务器接受请求(如下例所示) ,一些跨域图像将允许访问。
例子
我已经向 Filter 对象添加了一些辅助函数,这些函数将复制、创建和从各种图像源中获取像素。
Filter
在示例中抽象了术语图像。就示例而言,图像是类似对象的图像,可以是CSSImageValue
、HTMLImageElement
、SVGImageElement
、HTMLVideoElement
、HTMLCanvasElement
、ImageBitmap
或OffscreenCanvas
中的任何一个ImageData
。
const image = new Image;
image.src = "https://upload.wikimedia.org/wikipedia/commons/1/15/Late_model_Ford_Model_T.jpg";
image.crossOrigin = "Anonymous"; // CORS
image.addEventListener("load", () => applyFilter(image), {once: true});
const Filters = {
createImage(w, h) {
const can = document.createElement("canvas");
can.width = w;
can.height= h;
return can;
},
copyImage(img) {
const image = this.createImage(img.width, img.height);
const ctx = image.getContext("2d");
if (img instanceof ImageData) { ctx.putImageData(img, 0, 0) }
else { ctx.drawImage(img, 0, 0, img.width, img.height) }
return image;
},
getPixels(img) {
if (!(img instanceof HTMLCanvasElement)) { img = this.copyImage(img) }
const ctx = img.getContext("2d");
return ctx.getImageData(0, 0, img.width, img.height);
},
threshold(pixels, threshold, light = [255,255,255], dark = [0,0,0]) { // light, dark arrays of RGB
var d = pixels.data, i = 0, l = d.length;
while (l-- > 0) {
const v = d[i] * 0.2126 + d[i+1] * 0.7152 + d[i+2] * 0.0722;
[d[i], d[i+1], d[i+2]] = v >= threshold ? light : dark;
i += 4;
}
return pixels;
}
};
function applyFilter(image) {
const pixels = Filters.getPixels(image);
Filters.threshold(pixels, 100);
const thresholdImage = Filters.copyImage(pixels);
att.classList.remove("hide"); // Image can be seen so show attribution
document.body.appendChild(image); // add original to page
document.body.appendChild(thresholdImage); // add filtered to page
}
/* Image source
By Rmhermen - Transferred from en.wikipedia to Commons., CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=468996
*/
.hide {display: none}
div { font-size: x-small }
canvas { width: 46% }
img { width: 46% }
<div id="att" class="hide">By Rmhermen - Transferred from en.wikipedia to Commons., CC BY-SA 3.0, <a href="https://commons.wikimedia.org/w/index.php?curid=468996">image source</a></div>
TA贡献1934条经验 获得超2个赞
添加回答
举报