i need your help.
I've a picture with size 324x324
![Image](http://i.imgur.com/1Nm4AIO.png)
and i wanna cut out all 16 numbers with specific Geometry Specifications and set it back together.
The goal is to do this as quick as possible because after that comes OCR.
Right now i crop every single number individually, so 16 times convert -crop (convert 1.png -crop 46x46+0+18 1%d.png) and once (montage -geometry 324x324) So that takes quiet a long time.
Every single number is 46x46
X = 0,88,172,258
Y = 18,105,192,278
I tried with a bit cutting in lines and rows or Tile Cropping.
I think Tile Cropping would be a good solution but i've no idea how.
Best solution would be a two liner.
Can anyone help?