从HTML中间的图像对象打印图像而不保存

时间:2012-09-29 00:56:21

标签: php image

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

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

1 个答案:

答案 0 :(得分:1)

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

<img src="image.php?param1=value1&param2=value2&..."/>