Skip to content

Instantly share code, notes, and snippets.

@has207
Created September 26, 2011 15:12
Show Gist options
  • Save has207/1242460 to your computer and use it in GitHub Desktop.
Save has207/1242460 to your computer and use it in GitHub Desktop.
Convert to kindle screensaver
for i in *jpg; do
name=$(echo $i |awk -F_ '{print $4}' |sed 's/\.jpg$//')
convert -size 600x800 xc:white \
$i -type Grayscale -resize 600x800 -gravity center -extent 600x800^ \
~/Downloads/Kindle\ Stamp/stamp.png -flatten kindle/$name.jpg
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment