Skip to content

Instantly share code, notes, and snippets.

@Keycatowo
Last active February 1, 2022 08:52
Show Gist options
  • Save Keycatowo/72099b890f023c3f369f81f390bbf4cc to your computer and use it in GitHub Desktop.
Save Keycatowo/72099b890f023c3f369f81f390bbf4cc to your computer and use it in GitHub Desktop.
根據url取得圖片並顯示
# 根據url取得圖片並顯示
import requests
from PIL import Image
import matplotlib.pyplot as plt
response = requests.get(target_url)
img = Image.open(BytesIO(response.content)) # 將圖片Bytes轉換成檔案開啟
plt.imshow(img)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment