Skip to main content
Kontrafunk live hören
Kontrafunk live hören
  • 11:05 Uhr:
    Audimax: Peter J. Brenner – „Der Geist steht rechts“ – Der Konservatismus im Wandel der Zeit
Kontrafunk Livestream Player
  • 10:05 Uhr:
    Kirche im Kontrafunk: „Blinde sehen wieder, und Lahme gehen. Tote stehen auf, und den Armen wird das Evangelium verkündet“

Download Img 20221022 Wa0000 - Jpg

def get_image_properties(image_path): image = Image.open(image_path) exif_data = image._getexif()

if image_properties['exif_data']: print('Exif Data:') for tag, value in image_properties['exif_data'].items(): print(f"{tag}: {value}")

[Insert file size]

if exif_data: for tag, value in exif_data.items(): tag_name = TAGS.get(tag, tag) properties[tag_name] = value

image_size = os.path.getsize(image_path) image_width, image_height = image.size Download IMG 20221022 WA0000 jpg

def main(): image_path = 'Download IMG 20221022 WA0000 jpg.jpg' image_properties = get_image_properties(image_path)

properties = {}

if __name__ == "__main__": main()