def getPic(name,url):
# name ---图片地址
# url ---图片名字(自定义)
# 解决SSL验证
ssl._create_default_https_context = ssl._create_unverified_context
# 请求图片
resp = urllib.request.urlopen(url)
image = np.asarray(bytearray(resp.read()), dtype="uint8")
image = cv2.imdecode(image, cv2.IMREAD_COLOR)
cv2.imwrite(name, image)
# cv2.imshow(name, image)
# cv2.waitKey()
return image
python_获取网页上的图片
最新推荐文章于 2024-09-12 18:31:52 发布