I'm having trouble converting a vector file to PNG while preserving alpha transparency. I've tried every possible combination of options I could find on the board, and still no luck.
I've tried starting with all 3 of these file types:
- EPS: http://banjo.brighterplanet.com/andy/motorcycle.eps
- PDF: http://banjo.brighterplanet.com/andy/motorcycle.pdf
- SVG: http://banjo.brighterplanet.com/andy/motorcycle.svg
Here are some examples:
- convert -channel RGBA -colorspace RGB motorcycle.eps motorcycle-1.png
- convert motorcycle.eps -channel rgba -alpha On -background transparent motorcycle-2.png
- convert -background none motorcycle.eps -channel rgba -alpha On -background transparent motorcycle-3.png
- convert -background none motorcycle.pdf -background transparent -alpha On motorcycle-4.png
- convert -background none motorcycle.svg -background transparent -alpha On motorcycle.png
Thanks in advance.