Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I convert a series of images to a PDF from the command line on linux? [closed]

Tags:

bash

image

pdf

People also ask

How do I convert multiple files to PDF?

Convert multiple files into a single PDF.Open your favorite web browser and navigate to Acrobat. Select Combine Files. Drag and drop your files into the conversion frame. You can also locate your files manually.

How do I convert to PDF in Linux?

Go to the /etc/ImageMagick-6/ directory and open the policy. xml file in your favorite editor. Run the “convert” command again and list the directory to find a new pdf file.


Using imagemagick, you can try:

convert page.png page.pdf

Or for multiple images:

convert page*.png mydoc.pdf

Use convert from http://www.imagemagick.org. (Readily supplied as a package in most Linux distributions.)