How do I convert PDF to JPG?
You can open the PDF in GIMP and use “Export as” to export in a different format, such as JPEG.
I imagine PhotoShop will have a similar facility.
You’ll also find there are online tools to do the job as well.
1 Like
You can do it in your webpage with Imagemagick and Ghostscript
Or on *nix using Ghostscript on the command line:
gs -dNOPAUSE -sDEVICE=jpeg -r144 -sOutputFile=p%03d.jpg file.pdf
The tool you’re using to read the PDF usually has a means of exporting it.
Adobe Acrobat has image export options built in.
1 Like