在 PHP 中,如何获取 base64 编码的 png 并将该 png 输出为图像?

发布于 2024-09-03 18:20:46 字数 289 浏览 2 评论 0原文

可能的重复:
从base64字符串获取图像

我尝试过

header('Content-Type: image/png');
echo base64_decode($data);`

但它不起作用。

Possible Duplicate:
get image from base64 string

I tried

header('Content-Type: image/png');
echo base64_decode($data);`

But it doesn't work.

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

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

发布评论

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

评论(3

在巴黎塔顶看东京樱花 2024-09-10 18:20:46

png 数据 URL 如下所示:

data:image/png;base64,[actual data]

您必须剪切开头才能对其进行 base64_decode
此外,如果删除 header 调用,您将能够看到代码输出的任何错误消息。

A png data url looks like this:

data:image/png;base64,[actual data]

You have to cut the beginning to be able to base64_decode it.
Also, if you remove the header call, you will be able to see any error message your code outputs.

吾家有女初长成 2024-09-10 18:20:46

PHP 也有一个名为 imagecreatefromstring() 的神奇函数...
但如果您只需要显示图像,则无需使用它。

PHP has this magical function named imagecreatefromstring() too...
But there is no need to use it if you need to show image only.

晚雾 2024-09-10 18:20:46

感谢大家努力提供帮助。问题是我在将查询参数发送到 PHP 脚本之前忘记对其进行 url 编码。

Thank you everyone for trying to help. The problem was I was that I forgot to url encode the query parameter before I sent it to the PHP script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文