Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这可能是一个愚蠢的问题,但我对图像还不是很熟悉。
我有一个绘制 PNG 图像的 PHP 脚本。最后两行是
header('Content-Type: image/png'); imagepng($image);
我想用 AJAX 调用它,然后动态显示它。问题是,当我获取数据时,它会输出一长串字母、数字和符号而不是图像。我只是放入一个div,感觉很幼稚。我应该怎么做?
尝试将图像输出到临时文件,然后显示它:
<?php imagepng ($im, $filename); ?>
因此“header”指令设置了直接在浏览器中显示的内容类型。