reduce quality of image python code example
Example 1: get resolution of image python
img = Image.open("test.png")
img = img.size
# img.size is a tuple
Example 2: image resolution extracting python
from PIL import Image, ExifTags
img = Image.open("/path/to/file.jpg")
exif = { ExifTags.TAGS[k]: v for k, v in img._getexif().items() if k in ExifTags.TAGS }