如果我在变量内有图像的二进制数据,我如何将其显示给用户 html 页面(PHP)

发布于 2024-11-16 22:52:09 字数 222 浏览 0 评论 0原文

我使用 WideImage 库对图像进行一些修改,当处理完成图像的二进制数据时由 $new->output('jpg', 90); 返回 问题是输出是二进制数据,我无法与 。我该如何调整代码?谢谢

im using the WideImage libary to do some modifications to a image, when the proccess is done the binary data of the image is returned by $new->output('jpg', 90); The problem is that output is a binary data that i cant use with the <IMG SRC="image.jpg">. How can i adapt the code? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

当梦初醒 2024-11-23 22:52:09

当用户请求图像时,只需将其回显给用户即可。

这是典型的模式:

<img src="image.php?image_id=23423">

这就是您在 PHP 中所做的

header("Content-Type: image/jpeg");
echo $new->output('jpg', 90);

just echo it out to the user when he requests the image.

This is the typical pattern:

<img src="image.php?image_id=23423">

This is what you do in the PHP

header("Content-Type: image/jpeg");
echo $new->output('jpg', 90);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文