
It can convert jpegs to pdf without any issues. Install SCRIBUS from synaptic package manager. It can be used to create, edit, compose, or convert bitmap images, and supports a wide range of file formats, including JPEG, PNG, GIF, TIFF, and PDF. I have got 2 solutions that I consider solve this situation to the best. ImageMagick ® is a free, open-source software suite, used for editing and manipulating digital images.
#Imagemagic convert several files how to#
The problem is, the ImageMagick 'convert' command takes urls as inputs and ghostscript does not, and I need my program to take url input rather than file paths. One of the most common qs i see in forums is > How to convert multiple jpg files to one one pdf file by one click. Interestingly, this ghostscript command (which I found via StackOverflow but cannot re-find) does work as I would like it to: $ gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=merged.pdf multi-page-1.pdf multi-page-2.pdf

I have so far not found a way of telling the convert command to use a range of pages, although I have tried adding and at the end of the filenames. I would like to merged.pdf to contain all of the pages of each multi-page pdf.

Returns merged.pdf, which contains the third page of multi-page-1.pdf and the third page of multi-page-2.pdf. This command: $ convert multi-page-1.pdf multi-page-2.pdf merged.pdf Returns merged.pdf, which contains the first page of multi-page-1.pdf and the first page of multi-page-2.pdf. Convert multiple images with ImageMagick. mogrify -size 100x100 xc:black -gravity center -thumbnail 300x300 -composite. This command: $ convert multi-page-1.pdf multi-page-2.pdf merged.pdf Use the mogrify command to work with multiple files.

I am trying to use ImageMagick (6.8.0) to combine several multi-page PDFs into a single PDF.
