文字

imagecolordeallocate

(PHP 4, PHP 5, PHP 7)

imagecolordeallocate取消图像颜色的分配

说明

bool imagecolordeallocate ( resource $image , int $color )

imagecolordeallocate() 函数取消先前由 imagecolorallocate() imagecolorallocatealpha() 分配的颜色。

<?php
$white 
imagecolorallocate ( $im 255 255 255 );
imagecolordeallocate ( $im $white );
?>

参见 imagecolorallocate() imagecolorallocatealpha()

用户评论:

[#1] sabretur [2013-10-16 19:38:54]

A faster way to get HTML color values:

function rgb2html($r, $g, $b){
$r = sprintf('%02x',$r);
$g = sprintf('%02x',$g);
$b = sprintf('%02x',$b);
return '#'.$r.$g.$b;
}

上一篇: 下一篇: