summaryrefslogtreecommitdiff
path: root/tools/slice.sh
blob: 8053af712fc23a7b773df6212228332d7f9f7630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# white ffffff
# red eb2127

pnmcut -left 247 -top 394 -width 1736 -height 2232 tools/labels.ppm | pnmtopng > blocks300.png

exit

i=1
for y in 394 642 890 1138 1386 1634 1882 2130 2378
do
	for x in 247 495 743 991 1239 1487 1735
	do
		pnmcut -left $x -top $y -width 248 -height 248 tools/labels.ppm > tools/b$i.ppm
		i=$(expr $i + 1)
	done
done