'How can I convert a series of images to a PDF from the command line on linux? [closed]
I have a scanning server I wrote in cgi/bash and want to be able to convert a bunch of images (all in one folder) to a pdf from the command line. How can that be done?
Solution 1:[1]
Using imagemagick, you can try:
convert page.png page.pdf
Or for multiple images:
convert page*.png mydoc.pdf
Solution 2:[2]
Use convert
from http://www.imagemagick.org. (Readily supplied as a package in most Linux distributions.)
10 years later...
Agreed with Robert and others here. Use something like img2pdf instead.
img2pdf img1.png img2.jpg -o out.pdf
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Marvin Pinto |
Solution 2 | aksh1618 |