xemu-website/gen_thumbnail.sh

10 lines
272 B
Bash
Raw Normal View History

2020-04-05 02:26:14 +00:00
#!/bin/bash -ex
INPUT=$1
OUTPUT_COMPRESSED=`dirname $1`/cover_front_thumbnail.jpg
if [[ -e "$OUTPUT_COMPRESSED" ]]; then
echo "$OUTPUT_COMPRESSED already exists"
exit 0
fi
echo "CONVERTING $INPUT"
2020-10-26 20:40:18 +00:00
convert $INPUT -quality 85 -resize 256 -density 72x72 $OUTPUT_COMPRESSED