Fix animated .gif conversion when $config['thumb_ext'] == ''

This commit is contained in:
Marcin Łabanowski 2012-12-22 20:16:31 +01:00
parent 56eb3c6b15
commit 0812799eb4

View File

@ -183,7 +183,7 @@ class ImageImagick extends ImageBase {
public function resize() {
global $config;
if ($this->format == 'gif' && $config['thumb_ext'] == 'gif') {
if ($this->format == 'gif' && ($config['thumb_ext'] == 'gif' || $config['thumb_ext'] == '')) {
$this->image = new Imagick();
$this->image->setFormat('gif');
@ -266,7 +266,7 @@ class ImageConvert extends ImageBase {
$quality = $config['thumb_quality'] * 10;
if ($this->format == 'gif' && $config['thumb_ext'] == 'gif' && $config['thumb_keep_animation_frames'] > 1) {
if ($this->format == 'gif' && ($config['thumb_ext'] == 'gif' || $config['thumb_ext'] == '') && $config['thumb_keep_animation_frames'] > 1) {
if (shell_exec("convert -background transparent -filter Point -sample {$this->width}x{$this->height} +antialias -quality {$quality} " .
escapeshellarg($this->src . '') . " " . escapeshellarg($this->temp)) || !file_exists($this->temp))
error('Failed to resize image!');