欢迎访问服务器技术网-www.fuwuqijishu.com

PHP imagecolorat – 取得某像素的颜色索引值

PHP fuwuqijishu 2年前 (2022-09-04) 110次浏览 0个评论 扫描二维码

PHP imagecolorat – 取得某像素的颜色索引值

PHP 图像处理

imagecolorat — 取得某像素的颜色索引值。

语法

int imagecolorat ( resource $image , int $x , int $y )

返回 image 所指定的图形中指定位置像素的颜色索引值。

如果 PHP 编译时加上了 GD 库 2.0 或更高的版本并且图像是真彩色图像,则本函数以整数返回该点的 RGB 值。用移位加掩码来取得红,绿,蓝各自成分的值。

实例

取得各自的 RGB 值。

<?php
$im = ImageCreateFromPng("runoob-logo.png");
$rgb = ImageColorAt($im, 100, 25);
$r = ($rgb >> 16) & 0xFF;
$g = ($rgb >> 8) & 0xFF;
$b = $rgb & 0xFF;
?>

相关文章

  • imagecolorset() 给指定调色板索引设定颜色。
  • imagecolorsforindex() 取得某索引的颜色。

PHP 图像处理

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2317.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900