Easy converting PNG, JPG and other image formats to PDF
Easiest way to convert over 100 image formats to PDF is using ImageMagick. To install type in terminal:
sudo apt-get install imagemagick
Convert image to pdf:
convert source.png target.pdf
Merge all images in folder to one PDF file:
convert *.jpg target.pdf
For more info enter
convert -man