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

发表日期:2021-07-01 08:55:57 | 来源: | | 浏览(931) 分类:GD 和图像处理 函数

imagecolorat

(PHP 4, PHP 5, PHP 7, PHP 8)

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

说明

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

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

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

示例 #1 取得各自的 RGB 值

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

参见 imagecolorset()imagecolorsforindex()

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。