imagecolordeallocate()

阅读:52      收藏:0      [点我收藏+]

PHP imagecolordeallocate - 取消图像颜色的分配

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);
>

以上实例输出结果的图片如下:

相关文章

关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!