From 6607cd3282e82942c0f415aa1a234e0f4dda29c2 Mon Sep 17 00:00:00 2001 From: River Tarnell Date: Thu, 8 May 2008 21:13:14 +0000 Subject: [PATCH] support imgserv for SVG rasterising --- includes/DefaultSettings.php | 1 + 1 file changed, 1 insertion(+) 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'; -- 2.20.1