Skip to content

Instantly share code, notes, and snippets.

View jedwards1211's full-sized avatar

Andy Edwards jedwards1211

View GitHub Profile
@jedwards1211
jedwards1211 / pdf2png.sh
Last active November 8, 2015 20:21 — forked from yura/pdf2jpg.sh
script to PDF to JPG using pdftk and imagemagick
#!/bin/bash
# Script to convert PDF file to PNG images
#
# Dependencies:
# * ghostscript
for PDF in "$@"
do
echo "Processing $PDF..."