#!/bin/sh
#
# fixup for images in book 12

mogrify \
	-channel R -level 0,1,89% \
	-channel G -level 0,1,65% \
	-channel B -level 0,1,42% \
	-rotate -90 \
	-quality 70 \
	-geometry 1132x1698 \
	-crop 1000x1340+68+114 \
	"$@"

