I have a scanning server I wrote in CGI and Bash. I 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?
Using ImageMagick, you can try:
convert page.png page.pdf
For multiple images:
convert page*.png mydoc.pdf