Michael Merickel
2018-10-26 25737fd6a412f4fe9b780305c0260bb6e938be1b
commit | author | age
c06d4a 1 TEXDIR=_build/latex
e6f681 2
451f04 3 if test ! -z $BOOK; then
CM 4   for img in $TEXDIR/*.png;
5   do
6       cp $img ${img}.BAK
7       convert $img -units PixelsPerInch -resample 300 -colorspace Gray ${img}.grey
d5f0bf 8       #convert -strip -density 300 ${img} -units PixelsPerInch -resample 300 -colorspace Gray ${img}.grey
451f04 9       mv ${img}.grey $img
CM 10   done
11 fi
e6f681 12