summaryrefslogtreecommitdiffstats
path: root/gen-thumbs.sh
blob: b259e1eba7d0c95ae25e20eed1455d19d3258db0 (plain)
1
2
3
4
#!/bin/sh
for i in "$@"; do
  convert "$i" -thumbnail 245 -gravity North -extent 245x153 -bordercolor white -border 6 -bordercolor grey60 -border 1 -background none -background black \( +clone -shadow 60x4+4+4 \) +swap -background none -flatten -depth 8 "t_$i"
done