Michael Merickel
2018-10-26 25737fd6a412f4fe9b780305c0260bb6e938be1b
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