Comment obtenir la taille des côtés d'une image avec PIL ou toute autre bibliothèque Python ?
Réponses
Trop de publicités?from PIL import Image
im = Image.open('whatever.png')
width, height = im.size
D'après la documentation .
bluesummers
Points
2051
prosti
Points
4630
Ceci est un exemple complet de chargement d'image à partir d'une URL, de création avec PIL, d'impression de la taille et de redimensionnement...
import requests
h = { 'User-Agent': 'Neo'}
r = requests.get("https://images.freeimages.com/images/large-previews/85c/football-1442407.jpg", headers=h)
from PIL import Image
from io import BytesIO
# create image from binary content
i = Image.open(BytesIO(r.content))
width, height = i.size
print(width, height)
i = i.resize((100,100))
display(i)
Dmytro Lopushanskyy
Points
502