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


PHP imagecolortransparent()用法及代码示例


imagecolortransparent()函数是PHP中的内置函数,用于将颜色定义为透明。它设置透明图像的颜色。它返回新的透明颜色的标识符。如果图像没有透明颜色且未指定颜色,则它将返回-1。

用法:

int imagecolortransparent ( $image, $color )

参数:该函数接受上述和以下描述的两个参数:


  • $image:它由图像创建函数之一(例如imagecreatetruecolor())返回。它用于创建图像的尺寸。
  • $color:此参数用于设置由imagecolorallocate()函数创建的颜色标识符。

返回值:此函数返回新的透明颜色的标识符。如果未指定图像的颜色并且图像没有透明颜色,则返回-1。

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

程序1:

<?php 
  
// Create an image of size 500x400 
$image = imagecreatetruecolor(500, 400); 
  
// Allocate green color to image 
$green = imagecolorallocate($image, 0, 153, 0); 
  
// Allocate black color to image 
$black = imagecolorallocate($image, 0, 0, 0); 
   
// Make the background transparent 
imagecolortransparent($image, $black); 
   
// Draw a green filled rectangle  
imagefilledrectangle($image, 50, 50, 450, 300, $green); 
   
// Output the image to the browser 
header('Content-Type: image/png'); 
    
imagepng($image); 
   
imagedestroy($image); 
?>

输出:
image transparent

程序2:

<?php 
  
// Create an image of size 500x400 
$image = imagecreatetruecolor(500, 400); 
  
// Allocate green color to image 
$green = imagecolorallocate($image, 0, 153, 0); 
  
// Allocate black color to image 
$black = imagecolorallocate($image, 0, 0, 0); 
   
// Make the background transparent 
imagecolortransparent($image, $black); 
   
// Function to draw the circle 
imageellipse($image, 250, 200, 250, 250, $green); 
   
// Output the image to the browser 
header('Content-Type: image/png'); 
    
imagepng($image); 
   
imagedestroy($image); 
?>

输出:
transparent background image

相关文章:

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



相关用法


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