阅读量:0
imagecolortransparent()
函数在 PHP 的 GD 图形库中用于设置一幅图像的透明色。这个函数主要用于 PNG 和 GIF 图像,因为这些格式支持透明度。当你设置了一个颜色为透明色后,该颜色在图像中会被视为透明。
函数原型如下:
int imagecolortransparent ( resource $image [, int $color = -1 ] )
参数说明:
$image
:要操作的图像资源。$color
:指定要设置为透明的颜色。如果不设置此参数,则返回当前透明色的索引。
使用示例:
<?php $image = imagecreatefrompng("example.png"); $transparentColor = imagecolorallocate($image, 255, 0, 255); // 创建一个紫色(红色255,绿色0,蓝色255) imagecolortransparent($image, $transparentColor); // 将紫色设置为透明色 header("Content-type: image/png"); imagepng($image); imagedestroy($image); ?>
在这个示例中,我们首先从 PNG 文件创建一个图像资源,然后分配一个紫色,并将其设置为透明色。最后,我们输出处理过的图像。