Steve Piercy
2018-09-22 2a45fe74f9598b4e726ab17ce17948d4e709894b
1
2
3
4
5
6
7
8
9
10
11
TEXDIR=_build/latex
 
if test ! -z $BOOK; then
  for img in $TEXDIR/*.png;
  do
      cp $img ${img}.BAK
      convert $img -units PixelsPerInch -resample 300 -colorspace Gray ${img}.grey
      #convert -strip -density 300 ${img} -units PixelsPerInch -resample 300 -colorspace Gray ${img}.grey
      mv ${img}.grey $img
  done
fi