我需要什么
我的图像src看起来像这样
data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAA...
那你基本上有两个选择:
原文链接:https://www.f2er.com/php/138284.html>信任元数据
>键入直接检查图像源
选项1:
可能是更快的方式,因为它只涉及拆分字符串,但它可能是不正确的.
就像是:
$data = 'data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAA.'; $pos = strpos($data,';'); $type = explode(':',substr($data,$pos))[1];
选项2:
使用getimagesize(),它等效于字符串:
$info = getimagesizefromstring(explode(',',base64_decode($data)[1],2)); // $info['mime']; contains the mimetype