gpt4 book ai didi

Python:将图像从网络保存到磁盘

转载 作者:太空宇宙 更新时间:2023-11-03 10:47:34 27 4
gpt4 key购买 nike

我可以使用 python 将图像保存到磁盘吗?图像的一个例子是:

enter image description here

最佳答案

最简单的是使用 urllib.urlretrieve .

python 2:

import urllib
urllib.urlretrieve('http://chart.apis.google.com/...', 'outfile.png')

python 3:

import urllib.request
urllib.request.urlretrieve('http://chart.apis.google.com/...', 'outfile.png')

关于Python:将图像从网络保存到磁盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3409104/

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