我使用了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}" />
但没有其他方法可以将文档保存到文件中吗?
答案 0 :(得分:1)
创建一个生成图像的image.php
脚本,并在html中指向它:
<img src="image.php?param1=value1¶m2=value2&..."/>