我想将 alpha 透明 png 图像转换为基于调色板的 png 图像。
在 GD 中,我可以轻松做到:
// We have already the image loaded in $source_img
$w=200; $h=200; // We supose that img dimensions are 200x200
$img = imagecreatetruecolor($w, $h); // New black image
list($r, $g, $b) = array(200, 200, 200); // Some color that doesn't appear in image to avoid conflict
$color = imagecolorallocate($img, $r, $g, $b);
imagefill($img, 0, 0, $color); // Fill the black image with the chosen color.
imagecolortransparent($img, $color); // Set the chosen color as transparent
$res = imagecopyresampled($img, $source_img, 0, 0, 0, 0, $w, $h, $w, $h);
但在 Imagick 中,我不知道如何将颜色设置为透明(GD 中的 imagecolortransparent())。我花了几个小时在互联网上搜索,但是 php 站点中的帮助不是很全面,并且有许多未记录的功能。
谢谢。