I'm using potrace to convert a png file to svg. The png is black on transparent background with alpha-transparency levels. I would like to report them in the svg output. Is it possible ? Potrace skips the alpha-transparency and turns it to black.
Here is my command:
convert -alpha Remove file.png pgm: | potrace --svg -o file.svg
PNG : http://i.imgur.com/d2ZYrf6.png
SVG output (.svg in reality but you can see directly the result in png) : http://i.imgur.com/n1NsNYQ.png
Thanks !