2019-12-10 |

imagecolordeallocate()

imagecolordeallocate() 函数用于取消先前由 imagecolorallocate() 和imagecolorallocatealpha() 函数为图像分配的颜色。

语法:

bool imagecolordeallocate( resource image, int color )

例子:

<?
$im = @imagecreate(200, 50) or die("创建图像资源失败");
$bg = imagecolorallocate($im, 255, 0, 0);
imagecolordeallocate($im, $bg);
?>

0

流程控制

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论