PHP 获取图像错误最后一个像素的颜色

PHP get color at last pixels of image error

我编写了这段代码来获取图像第一个像素和最后一个像素的十六进制颜色。 第一个像素的代码正在运行,我得到了十六进制代码。 但是对于最后一个像素,我有一个错误:

PHP Notice:  imagecolorat(): 1,1024 is out of bounds in /var/playground/imghex.php on line 55

这是我的代码:

$gradientHeight = getimagesize($res["gradient"]);
// get Positions
$im  = imagecreatefrompng($res["gradient"]);
$rgb = imagecolorat($im, 0, 0);
$r   = ($rgb >> 16) & 0xFF;
$g   = ($rgb >> 8) & 0xFF;
$b   = $rgb & 0xFF;
// store
$res["Gradient1"] = rgb2hex([$r, $g, $b]);
// get positions
print_r($gradientHeight);
$rgb2 = imagecolorat($im, $gradientHeight[0], $gradientHeight[1]);
$r2   = ($rgb2 >> 16) & 0xFF;
$g2   = ($rgb2 >> 8) & 0xFF;
$b2   = $rgb2 & 0xFF;
// store
$res["Gradient2"] = rgb2hex([$r2, $g2, $b2]);
// print
print_r($res);

怎么了?我没有看到任何错误

您看到该通知是因为您在 0-based 索引上使用 size。如果您的大小为 1024,您的职位将从 01023

这样,您需要从中减去 1。替换

$rgb2 = imagecolorat($im, $gradientHeight[0], $gradientHeight[1]);

$rgb2 = imagecolorat($im, $gradientHeight[0] - 1, $gradientHeight[1] - 1);