我使用了想象中的扩展。我有一个$image_obj
对象。我可以回显它,但它使它看起来像随机数量的字符,除非我输入:
$Obj_img->setImageFormat("png");
header("Content-Type: image/png");
echo $image_obj;
有没有办法真正这样说:
echo "<html>
<body>
this is my image: {$image_obj}
</body>
</html>";
我知道你能做到
echo "this is my image <img src="raw:{$image_obj}" />
但是有没有其他方法可以不将文档保存到文件中?