0

我使用了想象中的扩展。我有一个$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}" />

但是有没有其他方法可以不将文档保存到文件中?

4

1 回答 1

1

制作一个image.php生成图像的脚本,并在您的 html 中指向它:

<img src="image.php?param1=value1&param2=value2&..."/>
于 2012-09-29T00:58:59.897 回答