Question

I try to convert SVG to PNG. Result picture has a white background I need transparent.

Sample of code:

wand = NewMagickWand()
MagickReadImage(wand,tmp_file_name)
transparentColor = NewPixelWand()
PixelSetMagickColor(transparentColor, 'none')
MagickSetBackgroundColor(wand, transparentColor)
MagickWriteImage(wand,new_filename)

if I do in command-line:

convert -background 'transparent' ./media/2222222.svg ./media/2222222.png

I've got a transparent picture.

Was it helpful?

Solution

I used subprocess and I got what I want

args = ['convert', '-background', 'transparent', './media/2222222.svg', './media/2222222.png',]
result = subprocess.call(args)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top