generate.sh 705 B

12345678910111213141516171819202122232425262728
  1. # Copyright John Maddock 2008.
  2. # Use, modification and distribution are subject to the
  3. # Boost Software License, Version 1.0. (See accompanying file
  4. # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #
  6. # Generates PNG files from the SVG masters.
  7. #
  8. # Paths to tools come first, change these to match your system:
  9. #
  10. math2svg='m:\download\open\SVGMath-0.3.1\math2svg.py'
  11. python='/cygdrive/c/program files/Python27/python.exe'
  12. inkscape='/cygdrive/c/Program Files (x86)/Inkscape/inkscape.exe'
  13. # Image DPI:
  14. dpi=96
  15. for svgfile in $*; do
  16. pngfile=$(basename $svgfile .svg).png
  17. echo Generating $pngfile
  18. "$inkscape" -d $dpi -e $(cygpath -a -w $pngfile) $(cygpath -a -w $svgfile)
  19. done