Cheap and easy way to create a PDF document consisting of just photos?
March 20, 2015 4:50 PM
I'd like to create a single PDF document made up of 50 photos. Is there free or cheap way to do this without sacrificing quality?
Thank you!
Libre office is free. Put all your photos in one document and save as PDF.
posted by aniola at 4:54 PM on March 20, 2015
posted by aniola at 4:54 PM on March 20, 2015
Imagemagick is free:
posted by a lungful of dragon at 5:04 PM on March 20, 2015
$ for img in `ls *.jpg`; do convert $img $img.pdf; done
$ convert -compress lossless *.pdf single.pdf
posted by a lungful of dragon at 5:04 PM on March 20, 2015
Thanks, a lungful of dragon! That looks like what I need!
posted by Bushmiller at 5:20 PM on March 20, 2015
posted by Bushmiller at 5:20 PM on March 20, 2015
Imagemagick does a decent job on single images, but using the 'compress lossless' option results in a file ~6× larger than it needs to be.
josch / img2pdf does it right:
posted by scruss at 7:12 PM on March 20, 2015
josch / img2pdf does it right:
img2pdf -o many.pdf *.jpgImages are kept intact; even the EXIF data is kept. You can extract the images identically using pdfimages.
posted by scruss at 7:12 PM on March 20, 2015
If you're on Mac OS X you can use the Automator to create a workflow that goes something like
> Ask for Finder Items (check "Allow Multiple Selection")
> New PDF from Images
(and if you like) > Compress Images in PDF documents
and then hit "Run" and select your 50 photos.
posted by idlethink at 4:18 AM on March 21, 2015
> Ask for Finder Items (check "Allow Multiple Selection")
> New PDF from Images
(and if you like) > Compress Images in PDF documents
and then hit "Run" and select your 50 photos.
posted by idlethink at 4:18 AM on March 21, 2015
Windows? Dunno. This looks like it might work: Installing Python on Windows; make sure you install pip as described on that page. Then from a terminal do something like: pip install img2pdf.
Though img2pdf works really well for JPEG images, the files get larger than they need to when using PNG. They shouldn't and that's bugging me.
posted by scruss at 1:13 PM on March 21, 2015
Though img2pdf works really well for JPEG images, the files get larger than they need to when using PNG. They shouldn't and that's bugging me.
posted by scruss at 1:13 PM on March 21, 2015
following a lungful of dragons above, this can be done in one line without a script with Imagemagick:
posted by zachxman at 2:52 PM on March 22, 2015
convert *.jpg output.pdfworks in OS X, linux, windows, and wherever fine command line tools are found.
posted by zachxman at 2:52 PM on March 22, 2015
Alternatively, you can convert all of your images to pdf using AVS Image Converter, then upload/combine each individual PDF with one another, using: this
posted by Grease at 8:49 AM on April 4, 2015
posted by Grease at 8:49 AM on April 4, 2015
This thread is closed to new comments.
posted by primethyme at 4:53 PM on March 20, 2015