我尝试将 SVG 转换为 PNG。结果图片有一个我需要透明的白色背景。
代码示例:
wand = NewMagickWand()
MagickReadImage(wand,tmp_file_name)
transparentColor = NewPixelWand()
PixelSetMagickColor(transparentColor, 'none')
MagickSetBackgroundColor(wand, transparentColor)
MagickWriteImage(wand,new_filename)
如果我在命令行中执行:
convert -background 'transparent' ./media/2222222.svg ./media/2222222.png
我有一张透明的图片。