如何在不使用PHP imagecreatefromstring
保存的情况下获取base64图像的字节大小(例如450000字节)?
答案 0 :(得分:-1)
FileInfo可以为你做这个..它返回有关字符串缓冲区的信息。所以imagecreatefromstring()
$encoded_string = "the string";
$imgdata = base64_decode($encoded_string);
$f = finfo_open();
$mime_type = finfo_buffer($f, $imgdata, FILEINFO_MIME_TYPE);