PHP imagecolorresolvealpha 图像GD库函数
-
定义和用法
imagecolorresolvealpha - 取得指定颜色 + alpha 的索引值或有可能得到的最接近的替代值 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 -
语法
imagecolorresolvealpha ( resource $image , int $red , int $green , int $blue , int $alpha )
本函数可以保证对所请求的颜色返回一个颜色索引,要么是确切值要么是所能得到最接近的替代值。 -
参数
参数 必需的 描述 image1 是 由图象创建函数(例如imagecreatetruecolor())返回的图象资源。 red 是 红 green 是 绿 blue 是 蓝 alpha 是 介于0和127之间的值。0表示完全不透明,而127表示完全透明。 colors参数是0到255之间的整数或0x00到0xFF之间的十六进制。 -
返回值
返回颜色索引。 -
示例
// Load an image $im = imagecreatefromgif('./colormap.gif'); // Get closest colors from the image $colors = array(); $colors[] = imagecolorresolvealpha($im, 255, 255, 255, 0); $colors[] = imagecolorresolvealpha($im, 0, 0, 200, 127); // Output print_r($colors); imagedestroy($im);
以上示例输出:Array ( [0] => 50 [1] => 128 )
提示: 此函数需要 GD 2.0.1 或更高版本(推荐 2.0.28 及更高版本)。
-
相关函数
imagecolorclosestalpha() - 取得与指定的颜色加透明度最接近的颜色