PHP Imagick - “-quantize transparent”等价物

时间:2012-11-11 01:02:29

标签: php imagemagick imagick

是否存在与-quantize transparent ???

相同的PHP Imagick

-quantize transparent usage example注意:在页面

中搜索'-quantize transparent'

1 个答案:

答案 0 :(得分:3)

PHP的Imagick扩展支持

Qunatize;但是,很少有文档被编写过。幸运的是,“Color Quantization and Transparency”的例子很简单。

convert alpha_gradient.png -quantize transparent \
    +dither  -colors 15   alpha_colors_15qt.png

从这个例子中,我们可以确定Imagick::quantizeImage

所需的5个参数
  • 颜色数= 15( - 颜色15
  • Colorspace = transparent
  • 树深= 0(未定义
  • Dither = False( + dither
  • 错误错误=错误
<?php

$wand = new Imagick("alpha_gradient.png");
$wand->quantizeImage(15,Imagick::COLORSPACE_TRANSPARENT,0,false,false);
$wand->writeImage("alpha_colors_15qt.png");