From c0d3a235745a2291374ed4a21082e123af7b3440 Mon Sep 17 00:00:00 2001 From: czaks Date: Sat, 22 Feb 2014 15:47:29 +0100 Subject: [PATCH] actually fix png posting for some images not fully supported by gm/imagemagick --- inc/image.php | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/inc/image.php b/inc/image.php index ced3296f..59182693 100644 --- a/inc/image.php +++ b/inc/image.php @@ -338,10 +338,8 @@ class ImageConvert extends ImageBase { $this->width, $this->height, escapeshellarg($this->temp)))) || !file_exists($this->temp)) { - //if (!preg_match ('/sBIT: invalid/', $error)) { - // $this->destroy(); - // error(_('Failed to resize image!'), null, $error); - //} + $this->destroy(); + error(_('Failed to resize image!'), null, $error); } if ($size = $this->get_size($this->temp)) { $this->width = $size[0]; @@ -363,10 +361,10 @@ class ImageConvert extends ImageBase { $this->width, $this->height, escapeshellarg($this->temp)))) || !file_exists($this->temp)) { - if (!preg_match ('/sBIT: invalid/', $error)) { - $this->destroy(); - error(_('Failed to resize image!'), null, $error); - } + //if (!preg_match ('/sBIT: invalid/', $error)) { + // $this->destroy(); + // error(_('Failed to resize image!'), null, $error); + //} } if ($size = $this->get_size($this->temp)) { $this->width = $size[0];