SamyCode
SamyCode

Reputation: 1018

Which is the correct command to convert PDF files to JPEG file using Ghostscript 9.10?

I'm just trying to achieve what this thread tittle says. I have found several examples in Google but none of them works. Some of them return short errors while others return large ones. I think that the problem is the Ghostscript version. Is there any proven command that I can use in Ghostscript 9.10 version in order to convert a PDF file to a JPEG file???

Upvotes: 0

Views: 91

Answers (1)

KenS
KenS

Reputation: 31199

This works perfectly well for me:

gs -sDEVICE=jpeg -o out.jpg input.pdf

Without seeing your errors its impossible to know what your problem is. I really doubt you are using 1.10 (I'm not even sure that was a real version number)....

Upvotes: 1

Related Questions