标签: php gd
我需要像imagecreatefrompng()这样的函数,但我想直接传入图像(而不是文件名)。这可能吗?
注意:我需要这个,因为图像来自数据库中的blob。
答案 0 :(得分:4)
imagecreatefromstring()
它应该从图像标题中检测到它是png并返回图像资源。
png
答案 1 :(得分:2)
是的,您可以使用imagecreatefromstring()
TTP://us2.php.net/manual/en/function.imagecreatefromstring.php