From: River Tarnell Date: Thu, 8 May 2008 21:13:14 +0000 (+0000) Subject: support imgserv for SVG rasterising X-Git-Tag: 1.31.0-rc.0~47801 X-Git-Url: https://git.cyclocoop.org/?a=commitdiff_plain;h=6607cd3282e82942c0f415aa1a234e0f4dda29c2;p=lhc%2Fweb%2Fwiklou.git support imgserv for SVG rasterising --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index cb4819eb23..fecd94e5c2 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1863,6 +1863,7 @@ $wgSVGConverters = array( 'inkscape' => '$path/inkscape -z -w $width -f $input -e $output', 'batik' => 'java -Djava.awt.headless=true -jar $path/batik-rasterizer.jar -w $width -d $output $input', 'rsvg' => '$path/rsvg -w$width -h$height $input $output', + 'imgserv' => '$path/imgserv-wrapper -i svg -o png -w$width $input $output', ); /** Pick one of the above */ $wgSVGConverter = 'ImageMagick';