Crop an imagen

Convert can be used to crop images

#!/bin/bash

mkdir cropped;
for i in `ls *.png`;
do convert -verbose -crop 1176x880+502+144 $i ./cropped/$i;
done;
echo FIN;
1176x880
is the final size of the image
+502+144
is the upper left corner where the cropping starts
more ...