From fb7fe0c3cb754619aa4efd5f60c2072816e52c70 Mon Sep 17 00:00:00 2001 From: Erik Moeller Date: Thu, 8 Apr 2004 09:14:20 +0000 Subject: [PATCH] +image resizing settings --- includes/DefaultSettings.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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; -- 2.20.1