对图像进行 Base64 编码而不保存

发布于 2024-12-10 13:00:12 字数 151 浏览 0 评论 0原文

我可以对动态创建的图像进行 Base64 编码,而不先将其保存到磁盘吗?据我所知,base64_encode()只接受字符串,并且我找不到一种方法来检索图像源对象作为字符串而不先保存它,并使用file_get_contents()加载它

Can I base64 encode an image that I created on the fly, without first saving it to disk? As far as I know, base64_encode() only accepts strings, and I couldn't find a way to retrive image source object as string without first saving it, and load it with file_get_contents()

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

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

发布评论

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

评论(1

小梨窩很甜 2024-12-17 13:00:12

GD 不提供将输出图像作为文本返回的方法,但您可以使用输出缓冲函数来伪造它:

ob_start();
imagejpeg($handle); // no second parameter, will do output instead of writing to file
$img = ob_get_clean();

echo base64_encode($img);

GD doesn't provide a method to return an output image as text, but you can fake it with the output buffering functions:

ob_start();
imagejpeg($handle); // no second parameter, will do output instead of writing to file
$img = ob_get_clean();

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