使用 MagickWand API 从 PNG 转换为 JPG 时,如何将背景设置为透明像素的指定颜色?我仍然只得到我不想要的白色背景。
我知道有类似的问题,但没有答案 = 如何在 MagickWand 中设置透明像素的背景颜色?
使用 MagickWand API 从 PNG 转换为 JPG 时,如何将背景设置为透明像素的指定颜色?我仍然只得到我不想要的白色背景。
我知道有类似的问题,但没有答案 = 如何在 MagickWand 中设置透明像素的背景颜色?
我找到了...我错过了 MagickMergeImageLayers 正在返回新魔杖!所以代码看起来像:
if(current_wand && IsMagickWand(current_wand)){
status=MagickReadImage(current_wand, "test.png");
if (status == MagickFalse) {
ThrowWandException(current_wand);
}
PixelWand *color = NewPixelWand();
PixelSetColor(color, "red");
MagickSetImageBackgroundColor(current_wand, color);
MagickWand *newwand = MagickMergeImageLayers(current_wand, FlattenLayer);
MagickWriteImage(newwand, "test.jpg");
DestroyMagickWand(newwand);
}