當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。