Aha! I found my solution for both thumbnailing problems (SVG and bitmap). I felt I'd share it in case someone else has a similar problem and reads this.

Here's a snippet of my |LocalSettings.php| file, namely the image-thumbnailing relevant part:

|# Image Converter|

|$wgSVGConverter = 'Inkscape';|

|
||$wgSVGConverters = array(|

|     'Inkscape' => '"/Program Files (x86)/Inkscape/inkscape.com" -z -w $width 
-f $input -e $output',|

|);|

|
||# Image converter path|

|$wgSVGConverterPath = '/Program Files (x86)/Inkscape';|

|
||## To enable image uploads, make sure the 'images' directory|

|## is writable, then set this to true:|

|$wgEnableUploads  = true;|

|$wgUseImageMagick = true;|

|$wgImageMagickConvertCommand = convert;

Hope this helps someone else,
Brenton
|

_______________________________________________
MediaWiki-l mailing list
To unsubscribe, go to:
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Reply via email to