summaryrefslogtreecommitdiffstats
path: root/gen-thumbs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'gen-thumbs.sh')
-rwxr-xr-xgen-thumbs.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/gen-thumbs.sh b/gen-thumbs.sh
new file mode 100755
index 0000000..b259e1e
--- /dev/null
+++ b/gen-thumbs.sh
@@ -0,0 +1,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