Create pdf from multiple jpg
This is really simple but proved to be useful for me today. If you have image magick, you should have the "convert" utility. It can be used to compose single multi-image files from multiple images.
Say you have 20 images image01.jpeg, .... image20.jpeg and you just want image.pdf. The only thing you need to do is :
convert image*.jpeg -adjoin image.pdf
Say you have 20 images image01.jpeg, .... image20.jpeg and you just want image.pdf. The only thing you need to do is :
convert image*.jpeg -adjoin image.pdf