我已经制作了这段代码来获取第一个像素的十六进制颜色和图像的最后一个像素。 第一个像素的代码正常,我得到了HEX代码。 但对于最后一个像素,我有一个错误:
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 :(得分:2)
您会看到该通知,因为您在 0 索引上使用尺寸。如果您的尺寸为1024
,则您的排名将从0
到1023
。
这样,您就需要从中减去1
。取代
$rgb2 = imagecolorat($im, $gradientHeight[0], $gradientHeight[1]);
与
$rgb2 = imagecolorat($im, $gradientHeight[0] - 1, $gradientHeight[1] - 1);