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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。