I'm looking for a solution that will allow users to convert PDF files possibly of multiple pages into JPGs. The solution must be local, online solutions are a no go due to security issues and it must be as ridiculously simple as possible so non IT types can use it easily. Licensing is not an issue but would prefer for it to be GPL. Can anyone help?
Thanks.
Ghostscript, with a command line like
gs -sDEVICE=jpeg -sOutputFile=page%02d.jpg -r150 -dNOPAUSE -dBATCH file.pdf
where 150 is the resolution in dots per inch. You could wrap this in some script that presents a nicer user interface.