imagecolorallocatealpha()函数是PHP中的内置函数,用于为图像分配颜色。此函数与imagecolorallocate()函数相同,但增加了透明度参数$alpha。该函数接受五个参数,如果失败则返回true或false的颜色标识符。
用法:
int imagecolorallocatealpha ( $image, $red, $green, $blue, $alpha )
参数:该函数接受上述和以下所述的五个参数:
- $image:它由图像创建函数之一(例如imagecreatetruecolor())返回。它用于创建图像的尺寸。
- $red:此参数用于设置红色分量的值。
- $green:此参数用于设置绿色分量的值。
- $blue:此参数用于设置蓝色分量的值。
- $alpha:此参数用于设置图像的透明度。 $alpha的值在0到127之间,其中0表示完全不透明,而127表示完全透明。
返回值:如果颜色分配失败,则此函数返回成功的颜色标识符或FALSE。
异常:如果分配失败,则5.1.3或更高版本返回false,否则先前返回-1。
以下示例程序旨在说明PHP中的imagecolorallocatealpha()函数:
程序1:
<?php
// It create the size of image or blank image.
$image = imagecreatetruecolor(500, 300);
// Set the background color of image.
$bg = imagecolorallocate($image, 0, 103, 0);
// Fill background with above selected color.
imagefill($image, 0, 0, $bg);
// allocate colors with alpha values
$yellow = imagecolorallocatealpha($image, 255, 255, 0, 75);
$red = imagecolorallocatealpha($image, 255, 0, 0, 75);
$blue = imagecolorallocatealpha($image, 0, 0, 255, 75);
// Drawing filled circle
imagefilledellipse($image, 200, 100, 150, 150, $yellow);
imagefilledellipse($image, 275, 100, 150, 150, $red);
imagefilledellipse($image, 240, 180, 150, 150, $blue);
//output a correct header!
header('Content-Type: image/png');
//output the result
imagepng($image);
imagedestroy($image);
?>
输出:
程序2:
<?php
// It create the size of image or blank image.
$image = imagecreatetruecolor(500, 300);
// Set the background color of image.
$bg = imagecolorallocate($image, 0, 103, 0);
// Fill background with above selected color.
imagefill($image, 0, 0, $bg);
// allocate colors with alpha values
$yellow = imagecolorallocatealpha($image, 255, 255, 0, 75);
$blue = imagecolorallocatealpha($image, 0, 0, 255, 75);
// Drawing filled circle
imagefilledellipse($image, 200, 150, 150, 150, $yellow);
imagefilledellipse($image, 280, 150, 150, 150, $blue);
//output a correct header!
header('Content-Type: image/png');
//output the result
imagepng($image);
imagedestroy($image);
?>
输出:
相关文章:
参考: http://php.net/manual/en/function.imagecolorallocatealpha.php
相关用法
- p5.js sq()用法及代码示例
- PHP pow( )用法及代码示例
- PHP next()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- p5.js day()用法及代码示例
- CSS var()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- p5.js pow()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- PHP pi( )用法及代码示例
- p5.js hex()用法及代码示例
- p5.js str()用法及代码示例
注:本文由纯净天空筛选整理自Mahadev99大神的英文原创作品 PHP | imagecolorallocatealpha() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。