如果我在变量内有图像的二进制数据,我如何将其显示给用户 html 页面(PHP)
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当用户请求图像时,只需将其回显给用户即可。
这是典型的模式:
这就是您在 PHP 中所做的
just echo it out to the user when he requests the image.
This is the typical pattern:
This is what you do in the PHP