The following can be run in the directory with .CR" images to convert RAW photos into jpg's.
-
find . -type f -name "*.CR2" -exec convert '{}' '{}'.jpg \;
The resulting file size for me was 2.1mb
Images Picture Photo Combine
Making lots of images into single pdf
How I combine photos into one file to print
- Download all images from google
- Separate all portrait and landscape into different folder
- Run combine script
-
#!/bin/bash
-
-
echo "Start of combine"
-
-
##convert -quality 85 `find -type f -name '*.png' -or -name '*.jpg' | sort -V` output.pdf
-
-
POTRAITDIR=../ski_photos/portrate/
-
LANDSCAPEDIR=../ski_photos/landscape/
-
rm ./pot_output.pdf
-
rm ./land_output.pdf
-
-
convert -auto-orient -quality 20 `find ${POTRAITDIR} -type f -name '*.png' -or -name '*.jpg' | sort -V` ./pot_output.pdf
-
convert -auto-orient -quality 20 `find ${LANDSCAPEDIR} -type f -name '*.png' -or -name '*.jpg' | sort -V` ./land_output.pdf
-
-
echo "End of combine"
- Open both output files print them to a file and put mutiple pages per page. I use 9 for land and 16 for portrait
google juice
image jpg jpeg png
RJM Article Type
Quick Reference