I have a lot of image files. I want to convert them to one single pdf file. How can I do it?
Ubuntu – Creating a single PDF from a lot of image
14.04convertpdf
Related Question
- Ubuntu – Convert an image from grayscale to binary
- Ubuntu – Convert PDF to image
- Ubuntu – How to convert all pdf files to text (within a folder) with one command
- Ubuntu – Convert a directory of JPEG files to a single PDF document
- Ubuntu – Create a single pdf from multiple text, images or pdf files
- Ubuntu – Convert PDF to images to PDF
Best Answer
First, install imagemagick:
Then in the images folder, do something like:
Maybe you can do
convert * out.pdf
.(I didn' t try this one). Otherwise, You can convert other images to png first then do above. For more details see doc of imagemagick convert command.