php gd imagecreatefromstring()和图像mime类型

时间:2011-08-24 13:04:00

标签: php gd mime-types

有没有办法使用imagecreatefromstring()并以某种方式得到什么是图像类型?

1 个答案:

答案 0 :(得分:1)

使用imagecreatefrom ...方法时,图像将作为未压缩的位图加载到内存中。此时并没有真正的图像类型。您可以使用图像...功能将其保存为您想要的任何类型。

$img = imagecreatefromstring($data);

imagepng($img, "file path and name");

imagedestroy($img);

http://us2.php.net/manual/en/function.imagecreatefromstring.php