opu 웃 Asked: 2014-04-27 20:45:52 +0800 CST2014-04-27 20:45:52 +0800 CST 2014-04-27 20:45:52 +0800 CST Creating a single PDF from a lot of image 772 I have a lot of image files. I want to convert them to one single pdf file. How can I do it? 14.04 1 Answers Voted xgdgsc 2014-04-27T20:51:59+08:002014-04-27T20:51:59+08:00 First, install imagemagick: sudo apt-get install imagemagick Then in the images folder, do something like: convert *.png out.pdf 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.
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.