Create a multi-page PDF from images!

Sometimes I need to convert a series of images (like pictures of single pages of a document) into a multi-page PDF file.

Thanks to ImageMagick® it is a matter of a single command on the shell. As you can see in the screenshot above, once you have ImageMagick installed on your computer, you will be able to use the convert command, which is quite powerful!

To convert a series of images (jpg, png, …) into a single PDF document, is straightforward! Call convert passing all the image files together with the PDF file name as parameters, and it will do the job.

convert *jpg test.pdf

Leave a comment