PHP

imagecolortransparent函数在PHP中的参数有哪些

小樊
84
2024-09-08 06:47:03
栏目: 编程语言

imagecolortransparent() 函数在 PHP 中用于设置图像资源中颜色的透明度

int imagecolortransparent ( resource $image [, int $color = -1 ] )

参数说明:

返回值:

示例:

<?php
// 创建一个新的空白图像
$image = imagecreatetruecolor(100, 100);

// 分配颜色
$red = imagecolorallocate($image, 255, 0, 0);
$blue = imagecolorallocate($image, 0, 0, 255);

// 设置红色为透明
imagecolortransparent($image, $red);

// 使用透明颜色绘制一个矩形
imagerectangle($image, 20, 20, 80, 80, $red);

// 输出图像
header("Content-type: image/png");
imagepng($image);

// 销毁图像资源
imagedestroy($image);
?>

在这个示例中,我们创建了一个 100x100 的空白图像,并分配了红色和蓝色。然后,我们将红色设置为透明,并使用透明颜色绘制一个矩形。最后,我们输出图像并销毁图像资源。

0
看了该问题的人还看了