我想遍历图像的所有像素,找到该像素的 rgba 值,并对这些像素做一些事情。
例子
假设我有一个 100x100 像素的图像。我想用我已经制作的函数找到每个像素的值:
function getPixel($image, $x, $y) {
$colors = imagecolorsforindex($image, imagecolorat($image, $x, $y));
$inrgba = 'rgba(' . $colors['red'] . ',' . $colors['green'] . ',' . $colors['blue'] . ',' . $colors['alpha'] . ')';
return $inrgba;
}
并将这些值与图像的尺寸一起存储在一个数组或数组数组中。我想在 html 页面中使用最终结果。
我该怎么做呢?