detect lowercase GIFs

This commit is contained in:
Michael Save 2012-03-13 03:48:12 +11:00
parent b9a5c21db2
commit b082c8c811

View File

@ -155,7 +155,7 @@
}
}
public function to($src) {
if(preg_match('/\.gif$/', $src))
if(preg_match('/\.gif$/i', $src))
$this->image->writeImages($src, true);
else
$this->image->writeImage($src);
@ -172,7 +172,7 @@
public function resize() {
global $config;
if(preg_match('/\.gif$/', $src)) {
if(preg_match('/\.gif$/i', $src)) {
$this->image = new Imagick();
$this->image->setFormat('gif');