What are the parameters that I should pass? The Ghostscript version I'm using is 8.71.
|
reads my.jpg and produces foo.pdf. You will have to find where your installation installed the PostScript program |
||||
|
|
|
I've been using the same basic commandline Henry gave in his answer for quite some time now in a simple Bash script, with a few tweaks. My full script converts multiple JPEG images to a multipage PDF, using this modified command:
It is called like this:
The problem is that this command would use the same (default) page size of Ghostscript (usually Letter or A4 in portrait mode), and each JPEG image will be scaled to fit this pagewidth and/or pageheight, being placed on the lower left corner. My script makes each PDF page use the same page dimensions as the original JPEG for the page. For auto-discovery of the JPEG's dimensions, I use ImageMagick's
Here is the code of the full script:
|
|||||||||||
|
|
alternatively on some linux distros |
|||||
|
|
https://github.com/josch/img2pdf As mentioned by PleaseStand, GhostScript will decode the JPEG data, resulting in generation loss, as well as performance "ten to hundred" times worse than img2pdf. ImageMagick (i.e. |
|||
|
|
|
GhostScript is a PostScript interpreter, so it does not directly support a JPEG input, only a JPEG output. That said, it does support JPEG decompression (except for progressive JPEG). There's a PostScript program and accompanying shell script that you can use to take advantage of this called jpeg2eps. To get a PDF, most systems have the script |
|||
|
|