gpt4 book ai didi

image - Laravel 从 base64 返回图像预览

转载 作者:行者123 更新时间:2023-12-02 05:16:16 26 4
gpt4 key购买 nike

我有 base64 图像,我想返回图像预览而不是 base64 代码。

我试过

return response(base64_decode($results->getBase64Image()), 200, ['Content-Type' => 'image/png']);

但它返回一个奇怪的输出。
Result

最佳答案

Laravel 5.8 及以上...

直接将字符串放入 response() ...
并添加 header('Content-Type', 'image/png')
例如:

$raw_image_string = base64_decode($base64_img_string);

return response($raw_image_string)->header('Content-Type', 'image/png');

关于image - Laravel 从 base64 返回图像预览,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48496474/

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