gpt4 book ai didi

python - 将图像直接从 URL 转换为 base64 而无需在 Python 中保存为文件的方法

转载 作者:太空狗 更新时间:2023-10-29 20:33:10 24 4
gpt4 key购买 nike

我希望将基于网络的图像转换为 base64。我目前知道如何将图像保存为 .jpg 文件,然后使用 base64 库将 .jpg 文件转换为 base64 字符串。

我想知道是否可以先跳过保存图像的步骤?谢谢!

最佳答案

使用 requests图书馆:

import base64
import requests


def get_as_base64(url):

return base64.b64encode(requests.get(url).content)

关于python - 将图像直接从 URL 转换为 base64 而无需在 Python 中保存为文件的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38408253/

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