This commit is contained in:
czaks 2013-08-02 00:09:07 -04:00
commit a15e0ffa98
3 changed files with 207 additions and 49 deletions

View file

@ -423,16 +423,17 @@
$config['thumb_keep_animation_frames'] = 1;
// Thumbnailing method:
// - 'gd' PHP GD (default). Only handles the most basic image formats (GIF, JPEG, PNG).
// This is a prerequisite for Tinyboard no matter what method you choose.
// - 'imagick' PHP's ImageMagick bindings. Fast and efficient, supporting many image formats.
// A few minor bugs. http://pecl.php.net/package/imagick
// - 'convert' The command line version of ImageMagick (`convert`). Fixes most of the bugs in
// PHP Imagick.
// - 'convert+gifsicle' Same as above, with the exception of using `gifsicle` (command line application)
// instead of `convert` for resizing gifs. It's faster and resulting animated gifs
// have less artifacts than if resized with ImageMagick.
// - 'gd' PHP GD (default). Only handles the most basic image formats (GIF, JPEG, PNG).
// This is a prerequisite for Tinyboard no matter what method you choose.
// - 'imagick' PHP's ImageMagick bindings. Fast and efficient, supporting many image formats.
// A few minor bugs. http://pecl.php.net/package/imagick
// - 'convert' The command line version of ImageMagick (`convert`). Fixes most of the bugs in
// PHP Imagick. `convert` produces the best still thumbnails and is highly recommended.
// - 'convert+gifsicle' Same as above, with the exception of using `gifsicle` (command line application)
// instead of `convert` for resizing GIFs. It's faster and resulting animated thumbnails
// have less artifacts than if resized with ImageMagick.
$config['thumb_method'] = 'gd';
// $config['thumb_method'] = 'convert';
// Strip EXIF metadata from JPEG files
$config['strip_exif'] = false;