• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • imagecolordeallocate()

    (PHP 4, PHP 5, PHP 7)

    取消图像颜色的分配

    说明

    imagecolordeallocate(resource $image,int $color): bool

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

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

    参见imagecolorallocate()和imagecolorallocatealpha()。