guess_image_type now uses Imagick::getImageMimeType()
This commit is contained in:
parent
5d0bd98d2a
commit
0acb983be4
|
@ -600,7 +600,7 @@ function guess_image_type($filename, $fromcurl=false) {
|
|||
* we won't be tricked by a manipulated extension
|
||||
*/
|
||||
$image = new Imagick($filename);
|
||||
$type = 'image/'. strtolower($image->getImageFormat());
|
||||
$type = $image->getImageMimeType();
|
||||
} else {
|
||||
$ext = pathinfo($filename, PATHINFO_EXTENSION);
|
||||
$types = Photo::supportedTypes();
|
||||
|
|
Loading…
Reference in a new issue