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


PHP imagealphablending()用法及代碼示例


imagealphablending()函數是PHP中的內置函數,用於設置圖像的混合模式。此函數允許使用兩種不同的模式(混合模式和非混合模式)來繪製真彩色圖像。繪製使用的調色板圖像時,混合模式不可用。

用法:

bool imagealphablending( $image, $blendmode )

參數:該函數接受上述和以下描述的兩個參數:


  • $image:它由圖像創建函數之一(例如imagecreatetruecolor())返回。它用於創建圖像的尺寸。
  • $blendmode:此參數用於檢查混合模式是否啟用。對於真彩色圖像,默認值為True;否則為False。

返回值:如果成功,此函數返回True;如果失敗,則返回False。

以下示例程序旨在說明PHP中的imagealphablending()函數:

示例1:

<?php 
  
// Create an image of given size 
$image = imagecreatetruecolor(300, 500); 
  
// Set alphablending to on 
imagealphablending($image, true); 
  
// Set the background color of image.  
$background_color = imagecolorallocate($image, 255, 255, 255);  
     
// Fill background with above selected color.  
imagefill($image, 0, 0, $background_color);  
  
// Draw a square of given size 
imagefilledrectangle($image, 50, 50, 450, 250, imagecolorallocate($image, 0, 255, 0)); 
  
// Output image 
header('Content-Type: image/png'); 
  
imagepng($image); 
imagedestroy($image); 
?>

輸出:

示例2:

<?php 
  
// Create an image from png 
$image = imagecreatefrompng(  
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');  
  
// Set alphablending to image 
imagealphablending($image, true); 
  
// Create color of image 
$green = imagecolorallocate($image, 0, 255, 0);  
     
// Create rectangle 
imagerectangle($image, 5, 10, 660, 100, $green); 
  
// Output image 
header('Content-Type: image/png'); 
  
imagepng($image); 
imagedestroy($image); 
?>

輸出:

參考: http://php.net/manual/en/function.imagealphablending.php



相關用法


注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | imagealphablending() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。