Thursday, December 02, 2010

Convert multiple JPG files into a single PDF on Linux (Ubuntu)

It's extremely simple if you have imagemagick installed!

sudo apt-get install imagemagick

Simple pass all the image files to convert with the adjoin parameter -

convert *.jpg -adjoin output.pdf

Done!