Python은 베개를 통해 이미지 크기 정보를 얻을 수 있습니다.
얻는 방법:
베개 설치: # 🎜🎜 #
pip install pillow로컬 이미지 정보 가져오기:
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)원격 이미지 정보 가져오기:
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)더 많은 Python 관련 기술 문서를 보려면 ,
Python tutorial 컬럼을 방문하여 배워보세요!
위 내용은 Python에서 이미지 크기를 읽는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!