re-enable pathinfo() check and try with getimagesize() if we have not got a result

This commit is contained in:
Mario Vavti 2015-10-28 21:52:15 +01:00
parent 1375ed6aea
commit a5f1fa3168

View File

@ -542,23 +542,22 @@ function guess_image_type($filename, $headers = '') {
}
}
/*
if(is_null($type)) {
$ext = pathinfo($filename, PATHINFO_EXTENSION);
$ph = photo_factory('');
$types = $ph->supportedTypes();
$type = "image/jpeg";
foreach ($types as $m=>$e){
if ($ext==$e) $type = $m;
}
}
*/
if(is_null($type)) {
$size = getimagesize($filename);
$ph = photo_factory('');
$types = $ph->supportedTypes();
$type = ((array_key_exists($size['mime'], $types)) ? $size['mime'] : 'image/jpeg');
}
}
logger('Photo: guess_image_type: type='.$type, LOGGER_DEBUG);
return $type;