Convert .jpg to .eps format

Bhavneet picture Bhavneet · Mar 18, 2011 · Viewed 43.8k times · Source

How can I convert multiple .jpg files to .eps files on Linux?

Answer

user1958943 picture user1958943 · Jan 8, 2013

When using the ImageMagick's convert, it is a good practice to use the eps2 format. This make the resulting eps file much smaller because it uses the JPEG compression algorithm (DCT).

So, to convert a.jpg to a.eps do:

convert a.jpg eps2:a.eps

This of course, can be used in a shell script, to convert multiple JPG to EPS.