标签: python-3.x amazon-s3 boto3 pillow
如何从S3获取图像尺寸(宽度与高度),无需下载?
使用文件系统我正在使用PIL:
PIL
from PIL import Image def get_image_size(filepath): try: with Image.open(filepath) as image: return image.size except: return None
如何对boto3执行相同的操作?
boto3