This repository has been archived on 2020-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
anne-survey/resize-images.sh

16 lines
432 B
Bash
Executable File

#!/bin/sh
ORIGSIZE=1041
ORIGLX=115
ORIGLY=200
ORIGRX=1445
ORIGRY=360
NEWSIZE=500
for f in $*; do
echo "Converting $f"
i=`basename $f .jpg`
convert $f -crop "$ORIGSIZE"x"$ORIGSIZE"+"$ORIGLX"+"$ORIGLY" +repage -resize "$NEWSIZE"x"$NEWSIZE" -bordercolor snow4 -border 1 "$i"-l.png
convert $f -crop "$ORIGSIZE"x"$ORIGSIZE"+"$ORIGRX"+"$ORIGRY" +repage -resize "$NEWSIZE"x"$NEWSIZE" -bordercolor snow4 -border 1 "$i"-r.png
done