语法:
imagecolordeallocate(resource $image, int $color)
参数:
- $image:图像资源标识符,通常由 imagecreatefrom... 等函数创建。
- $color:要取消分配的颜色索引。
返回值:
函数没有返回值。
示例:
// 创建一个 100x100 的图像
$image = imagecreatetruecolor(100, 100);
// 定义两个颜色,将其分别设置为红色和蓝色
$redColor = imagecolorallocate($image, 255, 0, 0);
$blueColor = imagecolorallocate($image, 0, 0, 255);
// 在调色板中查找蓝色的索引
$blueIndex = imagecolorexact($image, 0, 0, 255);
// 输出蓝色的索引
echo "Index of Blue Color: $blueIndex\n";
// 取消蓝色的颜色分配
imagecolordeallocate($image, $blueIndex);
// 再次查找蓝色的索引(应该返回 -1)
$blueIndexAfterDeallocate = imagecolorexact($image, 0, 0, 255);
echo "Index of Blue Color After Deallocate: $blueIndexAfterDeallocate\n";
// 销毁图像资源
imagedestroy($image);
在这个例子中,我们首先创建了一个 100x100 的图像,并定义了两个颜色(红色和蓝色)。然后,我们使用 imagecolorexact 函数获取蓝色的索引,并输出结果。接着,我们使用 imagecolordeallocate 函数取消蓝色的颜色分配。最后,我们再次使用 imagecolorexact 函数查找蓝色的索引,应该返回 -1,因为我们已经取消了蓝色的分配。
转载请注明出处:http://www.pingtaimeng.com/article/detail/3485/PHP