Archived
1
0

fix thumbnailer

This commit is contained in:
jeff 2015-09-05 11:05:32 -04:00
parent 90276293e1
commit 487e392d76

View File

@ -6,9 +6,9 @@
if [ "$1" == "" ] ; then if [ "$1" == "" ] ; then
echo "usage: $0 webroot_dir" echo "usage: $0 webroot_dir"
else else
cd $1 cd $1/img
echo "regenerate missing thumbs in $(pwd)" echo "regenerate missing thumbs in $(pwd)"
find img/ \ find . \
-type f \ -type f \
-regextype posix-extended \ -regextype posix-extended \
-iregex '.*\.(png|jpg|gif)$' \ -iregex '.*\.(png|jpg|gif)$' \
@ -17,7 +17,7 @@ else
-exec mogrify \ -exec mogrify \
-define jpeg:size=500x500 \ -define jpeg:size=500x500 \
-thumbnail '250>x250>' \ -thumbnail '250>x250>' \
-path 'thm/{}.jpg' \ -path '../thm/{}.jpg' \
-strip \ -strip \
'{}' \; '{}' \;
fi fi