gpt4 book ai didi

php - imagepng : how to save the output in a variable and then display it using img tag

转载 作者:行者123 更新时间:2023-12-05 08:33:55 25 4
gpt4 key购买 nike

我想将 imagepng 的输出保存到一个变量而不是显示它,然后想在 img 标签中使用变量来显示图像。我该怎么做?

我正在使用 smarty 模板,因为我需要将生成的图像保存到 variabe,然后将其显示在 smarty 模板 tpl 文件中

提前致谢

最佳答案

imagepng — 将 PNG 图像输出到浏览器或文件

尝试如下:

ob_start();
imagepng($png);
$imagedata = ob_get_contents();
ob_end_clean();
echo '<img src="data:image/png;base64,'.base64_encode($imagedata).'"/>';

关于php - imagepng : how to save the output in a variable and then display it using img tag,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34875731/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com