PHP GD imagecolordeallocate()
PHP imagecolordeallocate() 函数用于取消图像颜色的分配
函数原型
bool imagecolordeallocate ( resource $image , int $color )
imagecolordeallocate() 函数取消先前由 imagecolorallocate() 或 imagecolorallocatealpha() 分配的颜色
范例
<?php header("Content-type: image/png"); $im = @imagecreate(100, 50) or die("不能初始化新的 GD 图像流"); $background_color = imagecolorallocate($im, 255, 255, 255); $text_color = imagecolorallocate($im, 233, 14, 91); imagestring($im, 1, 5, 5, "A Simple Text String", $text_color); imagecolordeallocate($im, $background_color); imagepng($im); imagedestroy($im);
运行以上 PHP 范例,输出结果如下
延伸阅读
- imagecolorallocate() 为一幅图像分配颜色
- imagecolorallocatealpha() 为一幅图像分配颜色和透明度