PHP 中的 imagecolorat() 函数


imagecolorat() 函数获取像素颜色的索引。

语法

imagecolorat( $img, $x, $y )

参数

  • img:用 imagecreatetruecolor() 函数创建一个图像。

  • x:点的 x 坐标。

  • y:点的 y 坐标。

返回值

imagecolorat() 函数返回颜色索引或在失败时返回 FALSE。

示例

以下是一个示例

 实时演示

<?php
   $img = imagecreatefrompng("https://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) }

更新日期:2019-12-31

279 次浏览

开启您的职业生涯

通过完成课程获取认证

开始学习
广告