3

I have a question from experts in using Ghostscript. I am new in using this software. How can I change the format of an image from PS to EPS using Ghostscript?

2
  • Have you done any internet searching for this question? It appears this is a basic function of the application and similar questions here on SuperUser contain the answer as well: superuser.com/questions/182368/… Commented Dec 24, 2018 at 17:06
  • @music2myear That question asks about converting ".PDF to .eps". That'snot what the OP is asking.
    – DavidPostill
    Commented Dec 24, 2018 at 18:39

1 Answer 1

1

I assume you are using a very recent version of Ghostscript. It so, run this command:

gs -o output-%00d.eps -sDEVICE=eps2write input.ps

For more ancient versions, use

gs -o output-%00d.eps -sDEVICE=epswrite input.ps

Note that EPS by design is and may only be single-page document format.

So if your single file input.ps consists of multiple pages, your output will consist of multiple EPS files ("images") which are named output-001.eps, output-002.eps, etc.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .