Save multiple images to a PDF in Linux
Friday, December 4th, 2009Place all the images you want in the PDF into a new directory and in the console run the following from within that directory:
convert * mynewfile.pdf
The powerful convert command uses the ImageMagick library which can be installed (in Ubuntu) with the following console command:
sudo apt-get install imagemagick
