diff --git a/README.md b/README.md index dc629e5..5a2fe60 100644 --- a/README.md +++ b/README.md @@ -84,5 +84,16 @@ Get Help: `python3 upload_imgs_dir.py --help` **Edit and run via** `.helper-upload_imgs_dir.sh` + +# Convert PDFs to folder of JPGs with pdf2jpg.sh +By either: +* running it from this folder and using absolute path to PDF +`./pdf2jpg.sh "/full/path/to/2020_bantayog/PDFname.pdf"` + +* copying pdf2jpg.sh to 2020_bantayog/ and running with relative path to PDF +`./pdf2jpg.sh "PDFname.pdf"` + +It is + to convert pdfs to jpgs: convert -quality 100 -density 300 [name-of-pdf] %02d.jpg diff --git a/pdf2jpg.sh b/pdf2jpg.sh new file mode 100755 index 0000000..b0b1866 --- /dev/null +++ b/pdf2jpg.sh @@ -0,0 +1,9 @@ +#!/bin/sh +PDF="$1" +echo "$PDF" +DIR=`echo "$PDF" | sed s/\.pdf//` +echo "$DIR" +mkdir "$DIR" +echo "Starting convertion ..." +convert -quality 100 -density 300 "$PDF" "$DIR/"%02d.jpg +echo "PDF converted thanks to Damla aka Imagemagick ninja"