对 php 流图像的 http 请求



我有一个php文件,当你打开它时,一张图片将被下载并打开。这是我的代码:

header('Content-type: image/jpeg');
$stream = fopen('php://output', 'w'); // Stream to browser like with echo
$MadelineProto->download_to_stream($messageMediaPhoto, $stream);

直接打开没关系。但是当我向页面发送 ajax 请求时,我得到一些奇怪的长字符。(我想在html src中显示图像(

任何想法将不胜感激。

您需要将 php 文件添加到图像标签的 src 属性中。例如,如果你的 php 文件叫做 image.php,那么你可以使用以下 html 代码来显示图像:

<img src='image.php' width='image-width-in-px' height='image-height-in-px' />

相关内容

  • 没有找到相关文章