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


PHP imagecolorset()用法及代码示例


imagecolorset()函数是PHP中的内置函数,用于为指定的调色板索引设置颜色。用于将调色板中的索引指定为指定的颜色。要执行实际的flood-fill,在没有开销的情况下在调色板图像中创建flood-fill-like效果很有用。

用法:

void imagecolorset ( $image, $index, $red, $green, $blue, $alpha )

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


  • $image:它由图像创建函数之一(例如imagecreatetruecolor())返回。它用于创建图像的尺寸。
  • $index:此参数是调色板图像中的索引值。
  • $red:此参数用于设置红色分量的值。
  • $green:此参数用于设置绿色分量的值。
  • $blue:此参数用于设置蓝色分量的值。
  • $alpha:此参数用于设置图像的透明度。 $alpha的值在0到127之间,其中0表示完全不透明,而127表示完全透明。

返回值:该函数不返回任何值。

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

程序1:

<?php 
   
// Create an image of given size 
$image = imagecreate(500, 300); 
   
// Set the background  
imagecolorallocate($image, 0, 0, 0); 
   
// Get the color index for the background 
$bg = imagecolorat($image, 150, 100); 
   
// Change the background color 
imagecolorset($image, $bg, 0, 153, 0); 
   
// Output of the image 
header('Content-Type: image/png'); 
   
imagepng($image); 
imagedestroy($image); 
?>

输出:
image

程序2:

<?php 
   
// Create an image of given size 
$image = imagecreate(500, 300); 
   
// Set the background  
imagecolorallocate($image, 0, 0, 0); 
  
// set the colors of image 
$white_color = imagecolorallocate($image, 255, 255, 255); 
  
// draw the head 
imagearc($image, 200, 150, 200, 200,  0, 360, $white_color); 
   
// Get the color index for the background 
$bg = imagecolorat($image, 150, 100); 
   
// Set the backgrund 
imagecolorset($image, $bg, 0, 153, 0); 
   
// Output the image to the browser 
header('Content-Type: image/png'); 
   
imagepng($image); 
imagedestroy($image); 
?>

输出:
image

相关文章:

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



相关用法


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