Created
March 10, 2014 12:06
-
-
Save dvcama/9463934 to your computer and use it in GitHub Desktop.
bash: extract high-res images from pdf using imagemagick (recursively)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# extract jpg from PDF | |
# based on a script edited by Purch | |
##################################### | |
if [ -z $1 ];then echo Give target directory; exit 0;fi | |
find "$1" -depth -name '*.pdf' | while read file ; do | |
directory=$(dirname "$file") | |
oldfilename=$(basename "$file") | |
newfilename=$(echo "$oldfilename" | sed 's/.pdf/.jpg/g') | |
if [ "$oldfilename" != "$newfilename" ]; then | |
convert -density 600x600 "$directory/$oldfilename" "$directory/$newfilename" | |
echo ""$directory/$oldfilename" ---> "$directory/$newfilename"" | |
mv -i "$directory/$oldfilename" "$directory/$oldfilename.done" | |
#echo | |
fi | |
done | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment