有没有办法使用imagecreatefromstring()
并以某种方式得到什么是图像类型?
答案 0 :(得分:1)
使用imagecreatefrom ...方法时,图像将作为未压缩的位图加载到内存中。此时并没有真正的图像类型。您可以使用图像...功能将其保存为您想要的任何类型。
$img = imagecreatefromstring($data);
imagepng($img, "file path and name");
imagedestroy($img);
http://us2.php.net/manual/en/function.imagecreatefromstring.php