Maison >développement back-end >Tutoriel Python >Comment lire la taille de l'image en python
Python peut obtenir des informations sur la taille de l'image via l'oreiller
Méthode d'obtention :
Installer l'oreiller :
pip install pillow
Obtenir. Informations sur l'image locale :
import os from PIL import Image path = os.path.join(os.getcwd(),"23.png") img = Image.open(path) print img.format # PNG print img.size # (3500, 3500)
Obtenez des informations sur l'image distante :
path = "http://h.hiphotos.baidu.com/image/pic/item/c8ea15ce36d3d5397966ba5b3187e950342ab0cb.jpg" file = urllib2.urlopen(path) tmpIm = cStringIO.StringIO(file.read()) img = Image.open(tmpIm) print img.format # JPEG print img.size #大小/尺寸 # (801, 1200)
Pour plus d'articles techniques liés à Python, veuillez visiter la colonne Tutoriel Python pour apprendre !
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!