You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
303 B
18 lines
303 B
# CROP Files
|
|
|
|
SRES=128x128
|
|
ARES=128x256
|
|
SPOS=+0+0
|
|
|
|
rm -rf crop*
|
|
rm -rf bomb.bmp
|
|
|
|
for i in `ls *.bmp`; do
|
|
echo "SCALE " $i
|
|
cp $i crop-$i
|
|
mogrify -filter Point -antialias -resize $SRES crop-$i
|
|
done;
|
|
|
|
echo "MONTAGE Sick";
|
|
montage -tile 1x2 -geometry $SRES crop-sick*.bmp -crop $ARES bmp:sick.bmp
|