Handbuch:$wgSVGConverter

This page is a translated version of the page Manual:$wgSVGConverter and the translation is 24% complete.
SVG: $wgSVGConverter
A key from $wgSVGConverters to use as converter.
Eingeführt in Version:1.4.0
Entfernt in Version:weiterhin vorhanden
Erlaubte Werte:(Zeichenkette)
Standardwert:'ImageMagick '

Details

A key from $wgSVGConverters to use for the conversion of SVG to PNG.

Possible values available by default are 'ImageMagick', 'sodipodi', 'inkscape', 'batik', 'rsvg', 'imgserv', 'ImagickExt'. Other converters can be added to $wgSVGConverters .

Standardwert

$wgSVGConverter = 'ImageMagick';

ImageMagick & Local Web server

Many users may find it difficult to make ImageMagick Work in local web servers running mediawiki such as XAMPP, WAMP, MAMP, Apache HTTP Sever, AMPPS, EasyPHP, Uniform Server etc. For ImageMagick to work on Windows, these settings must be set properly in LocalSettings.php. You can copy this code directly to LocalSettings.php but remember to comment out by removing #.

## use ImageMagick in mediawiki
$wgUseImageResize = true;
$wgUseImageMagick = true;
## Enable applicable one for windows
# If you have installed ImageMagick in windows comment out below
#$wgImageMagickConvertCommand = "C:/Program Files/ImageMagick-6.9.3-Q16/convert";
# If you have portable version of ImageMagick. Show the path properly & comment out below line. In this case Portable ImageMagick was copied to mediawiki/extra folder. So path is shown this way.
#$wgImageMagickConvertCommand = "$IP/extra/convert";
## Enable this for Linux
#$wgImageMagickConvertCommand = "/usr/bin/convert";

# For SVG image support
$wgFileExtensions[] = 'svg';
$wgAllowTitlesInSVG = true;
$wgSVGConverter = 'ImageMagick';
$wgSVGConverters = [
    'ImageMagick' => '"C:/Program Files/ImageMagick-6.9.3-Q16/convert" -background white -geometry $width $input $output',
];

Siehe auch