How to convert EPS to PDF in Windows?

Solution 1:

When MiKTeX is installed, you can use the command line

epstopdf input.eps --output output.pdf

On Windows 10 with Miktex 2.9.6500 64bit, the command is

epstopdf input.eps --outfile output.pdf

Solution 2:

You can use Ghostscript to do this easily on command prompt.

  1. Install Ghostscript, linked above
  2. Open Command Prompt
  3. Run %programfiles%\gs\gs9.07\lib\ps2pdf.bat input.eps output.pdf
    • Replace Ghostscript version as needed
    • You can also use the full document path for the input and output files
  4. Done