ImageMagick Command Line converts PNG to EPS with transparency

I am trying to make a simple conversion from a transparent PNG file to EPS with transparency, and currently my command is as follows:

convert "image1.png" "image1.eps"

It seems that all I get is a black image. Any ideas?

Thank!

+5
source share
1 answer

PNG EPS - . , " traced". potrace. potrace ( mkbitmap), :

convert image1.png image1.bmp
mkbitmap image1.bmp -o image1.pgm
potrace image1.pgm -e -o image1.eps

mkbitmap graymap, . eps . , inkskape - GUI , inkscape homebrewed , ,

+2

All Articles