在PHP中从mime类型获取图像类型

时间:2013-09-28 17:09:37

标签: php image mime-types file-extension

在PHP中,有两个功能, image_type_to_extension image_type_to_mime_type ,但是,我正在寻找对手。是否有类似 mime_type_to_image_type 的东西,所以我可以从mime中检索类型(我只有image / jpeg,或者image / png,并且最终得到扩展名)?

请注意,我无法使用 exif_imagetype getimagesize ,因为托管服务器不允许这样做。出于安全原因,php设置 allow_url_fopen 已关闭。

感谢。

1 个答案:

答案 0 :(得分:0)

您可能可以使用Client URL Library (cURL)从文件的原始数据中提取此信息。您可以看到一些示例in this related answer