gpt4 book ai didi

PHP Imagick - "-quantize transparent"等效

转载 作者:行者123 更新时间:2023-12-04 05:24:40 24 4
gpt4 key购买 nike

是否有适用于 -quantize transparent 的 PHP Imagick 等效项???

-quantize transparent usage example注意:在页面中搜索“-quantize transparent”

最佳答案

Quantize由 PHP 的 Imagick 扩展支持;然而,几乎没有编写过文档。幸运的是,来自“Color Quantization and Transparency”的例子很简单。

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

从这个例子中,我们可以确定 Imagick::quantizeImage() 所需的 5 个参数。 .
  • 颜色数 = 15 (-colors 15)
  • 色彩空间 = 透明
  • 树深度 = 0(未定义)
  • 抖动 = 假(+抖动)
  • 测量错误 = False

  • <?php

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

    关于PHP Imagick - "-quantize transparent"等效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13327675/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com