From: Erik Moeller Date: Thu, 8 Apr 2004 09:14:20 +0000 (+0000) Subject: +image resizing settings X-Git-Tag: 1.3.0beta1~559 X-Git-Url: https://git.cyclocoop.org/%28%28?a=commitdiff_plain;h=fb7fe0c3cb754619aa4efd5f60c2072816e52c70;p=lhc%2Fweb%2Fwiklou.git +image resizing settings --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index ab2ccf669e..ae5de09c4c 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -289,6 +289,21 @@ $wgSiteNotice = ""; $wgAllowAnonymousMinor = false; +## Set $wgUseImageResize to true if you want to enable dynamic +## server side image resizing ("Thumbnails") +# +$wgUseImageResize = false; + +## Resizing can be done using PHP's internal image libraries +## or using ImageMagick. The later supports more file formats +## than PHP, which only supports PNG, GIF, JPG, XBM and WBMP. +## +## Set $wgUseImageMagick to true to use Image Magick instead +## of the builtin functions +# +$wgUseImageMagick = false; +$wgImageMagickConvertCommand = "/usr/bin/convert"; + # Enable experimental smarty skins (put Smarty/libs in your include_path!) $wgUseSmarty = false; $wgUsePHPTal = false;