是否可以将 imagecreatefrompng() 与返回动态 png 图像的 php 文件一起使用?
例如。
<?php
$IM = imagecreatefrompng('image.php?var=1');
?>
其中 image.php 看起来像:
<?php
// code to generate image
header("content-type: image/png");
imagepng ( $OUTPUT );
?>
目前我收到“无法打开流”错误 - 可以这样做吗?如果没有,是否有任何快速简便的解决方法?(不涉及使用 image.php 保存 .png 文件以供脚本检测。)
谢谢,
克里斯