How I combine photos into one file to print
- Download all images from gogle
- Seperate all portrit 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 potrait
RJM Article Type
Work Notes