imagecolorat() 函数获取像素颜色的索引。
imagecolorat( $img, $x, $y )
img: 使用 imagecreatetruecolor() 函数创建图像。
x : 点的 x 坐标。
y: 点的 y 坐标。
imagecolorat() 函数返回颜色索引,失败时返回 FALSE。
以下是示例:
Live Demo
<?php $img = imagecreatefrompng("http://www.tutorialspoint.com/images/tp-logo-diamond.png"); $rgb = imagecolorat($img, 15, 25); $colors = imagecolorsforindex($img, $rgb); var_dump($colors); ?>
以下是结果输出:
array(4) { ["red"]=> int(255) ["green"]=> int(255) ["blue"]=> int(255) ["alpha"]=> int(127) }
以上是在PHP中的imagecolorat()函数的详细内容。更多信息请关注PHP中文网其他相关文章!