= 4.0.6, PHP 5, PHP 7, PHP 8)imagecolorresolvealpha — 取得指定顏色 + alpha 的索引值或有可能得到的最接近的替代值 說明imagecolorresolvealpha( res">
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
imagecolorresolvealpha — 取得指定顏色 + alpha 的索引值或有可能得到的最接近的替代值
$image
,$red
,$green
,$blue
,$alpha
本函數(shù)可以保證對所請求的顏色返回一個(gè)顏色索引,要么是確切值要么是所能得到最接近的替代值。
image
由圖象創(chuàng)建函數(shù)(例如imagecreatetruecolor())返回的 GdImage 對象。
red
紅色成分的值。
green
綠色成分的值。
blue
藍(lán)色成分的值。
alpha
A value between 0
and 127
.
0
indicates completely opaque while
127
indicates completely transparent.
Returns a color index.
示例 #1 Using imagecoloresolvealpha() to get colors from an image
<?php
// Load an image
$im = imagecreatefromgif('phplogo.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] => 89 [1] => 85 )