JPEG Image
import os from PIL import Image from PIL.ExifTags import TAGS
Download IMG 20221022 WA0000 jpg
image_size = os.path.getsize(image_path) image_width, image_height = image.size
if exif_data: for tag, value in exif_data.items(): tag_name = TAGS.get(tag, tag) properties[tag_name] = value Download IMG 20221022 WA0000 jpg
if __name__ == "__main__": main()
def get_image_properties(image_path): image = Image.open(image_path) exif_data = image._getexif() JPEG Image import os from PIL import Image from PIL
if image_properties['exif_data']: print('Exif Data:') for tag, value in image_properties['exif_data'].items(): print(f"{tag}: {value}")