0

我无法在想象文档https://imagine.readthedocs.org/en/latest/index.html中找到我如何获得 mime 类型。

我只是打开这样的图像:

$myImage = $imagine->open('/path/to/image.gif');

我现在有 $myImage,如何获得 mime 类型?

问候。

4

1 回答 1

2

由于您确定您一直在使用图像,因此您可以通过传递您打开的相同路径来使用文档exif_imagetype中描述的方法。与(在此处记录)混合,您应该能够达到您想要的结果。image_type_to_mime_type

$filename = '/path/to/image.gif';
$myImage = $imagine->open($filename);
$imagetype = exif_imagetype($filename);
if($imagetype) // check that you have a valid type, but most likely always the case
    $mimetype = image_type_to_mime_type($imagetype);
于 2014-05-02T20:51:38.913 回答