From f1a2af2d8a133b500f14d04f820788c3c3d7c27e Mon Sep 17 00:00:00 2001 From: Michael Save Date: Sat, 10 Mar 2012 22:56:45 +1100 Subject: [PATCH] experimental animated GIF thumbnails --- inc/config.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/inc/config.php b/inc/config.php index ba0ca93e..96cf8230 100644 --- a/inc/config.php +++ b/inc/config.php @@ -346,6 +346,11 @@ // Thumbnail extension, empty for inherited (png recommended) $config['thumb_ext'] = 'png'; + // EXPERIMENTAL: + // Maximum amount of frames to resize (more frames means more processing power). "1" means no animated thumbnails. + // Requires $config['thumb_ext'] to be 'gif' $config['imagick'] to be enabled. + $config['thumb_keep_animation_frames'] = 1; + // Use Imagick instead of GD (some further config options below are ignored if set) $config['imagick'] = false;