当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imagecolorexact()用法及代码示例


imagecolorexact()函数是PHP中的内置函数,用于获取图像调色板中指定颜色的索引。在创建的图像文件中,仅解决图像中使用的颜色。仅调色板中存在的颜色无法解析。

用法:

int imagecolorexact ( $image, $red, $green, $blue )

参数:该函数接受上述和以下所述的四个参数:


  • $image:它由图像创建函数之一(例如imagecreatetruecolor())返回。它用于创建图像的尺寸。
  • $red:此参数用于设置红色分量的值。
  • $green:此参数用于设置绿色分量的值。
  • $blue:此参数用于设置蓝色分量的值。

返回值:如果成功,此函数将返回调色板中指定颜色的索引;如果颜色不存在,则返回-1。

以下示例程序旨在说明PHP中的imagecolorexact()函数。

程序1:

<?php 
  
// Set the image into variable 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/imagecolor1.png'); 
  
// Create an array containing colors and image 
$colors = Array(); 
$colors[] = imagecolorexact($image, 10, 15, 20); 
$colors[] = imagecolorexact($image, 30, 180, 70); 
$colors[] = imagecolorexact($image, 12, 55, 25); 
$colors[] = imagecolorexact($image, 154, 25, 52); 
  
print_r($colors); 
  
// Free from memory 
imagedestroy($image); 
  
?>

输出:

Array ( 
    [0] => 659220 
    [1] => 2012230 
    [2] => 800537 
    [3] => 10098996 
)

程序2:

<?php 
  
// Set the image into variable 
$image = imagecreatefrompng( 
'https://media.geeksforgeeks.org/wp-content/uploads/imagecolor1.png'); 
   
// Create an array containing colors and image 
$colors   = Array( 
    $colors[] = imagecolorexact($image, 0, 153, 0), 
    $colors[] = imagecolorexact($image, 0, 0, 0), 
    $colors[] = imagecolorexact($image, 255, 255, 255), 
    $colors[] = imagecolorexact($image, 100, 100, 52) 
); 
   
print_r($colors); 
   
// Free from memory 
imagedestroy($image); 
  
?>

输出:

Array ( 
    [0] => 39168 
    [1] => 0 
    [2] => 16777215 
    [3] => 6579252 
)

相关文章:

参考: http://php.net/manual/en/function.imagecolorexact.php



相关用法


注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | imagecolorexact() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。