summaryrefslogtreecommitdiff
path: root/bin/fuze-img
blob: 1286bcc65f187891a748f575dd9812759bb5402f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env zsh
## Copyright © 2010 by Daniel Friesel <derf@derf.homelinux.org>
## License: WTFPL <http://sam.zoy.org/wtfpl>

set -e

INPUT=${1}
OUTPUT=/tmp/fuze/${INPUT:t:r}.jpg

mkdir -p /tmp/fuze

convert -resize 220x176 -quality 100 ${INPUT} ${OUTPUT}

echo ${OUTPUT}