#!/bin/sh
# This way you can SVG instead of PNG to enable smooth scaling
# but you need to tweak HTML pages accordingly.
# ARGS=`echo $@ | sed -e 's/ -Tpng / -Tsvg /g' -e 's/\(-o .\+\.\)png/\1svg/'`
#
# So we just try to render PNGs with GD library
#
# To disable this feature or remove the DOT_PATH
# setting in doxygen/htmldocs.cfg (quilt patch)

ARGS=`echo $@ | sed -e 's/ -Tpng / -Tpng:gd /g'`
/usr/bin/dot $ARGS
