Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -289,6 +289,21 @@ |
290 | 290 | |
291 | 291 | $wgAllowAnonymousMinor = false; |
292 | 292 | |
| 293 | +## Set $wgUseImageResize to true if you want to enable dynamic |
| 294 | +## server side image resizing ("Thumbnails") |
| 295 | +# |
| 296 | +$wgUseImageResize = false; |
| 297 | + |
| 298 | +## Resizing can be done using PHP's internal image libraries |
| 299 | +## or using ImageMagick. The later supports more file formats |
| 300 | +## than PHP, which only supports PNG, GIF, JPG, XBM and WBMP. |
| 301 | +## |
| 302 | +## Set $wgUseImageMagick to true to use Image Magick instead |
| 303 | +## of the builtin functions |
| 304 | +# |
| 305 | +$wgUseImageMagick = false; |
| 306 | +$wgImageMagickConvertCommand = "/usr/bin/convert"; |
| 307 | + |
293 | 308 | # Enable experimental smarty skins (put Smarty/libs in your include_path!) |
294 | 309 | $wgUseSmarty = false; |
295 | 310 | $wgUsePHPTal = false; |