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.
- Install Ghostscript, linked above
- Open Command Prompt
- 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
- Done