def main(): image_path = 'Download IMG 20221022 WA0000 jpg.jpg' image_properties = get_image_properties(image_path)
JPEG Image
print('Image Properties:') print(f"File Size: {image_properties['image_size']}") print(f"Image Resolution: {image_properties['image_width']} x {image_properties['image_height']}")
def main(): image_path = 'Download IMG 20221022 WA0000 jpg.jpg' image_properties = get_image_properties(image_path)
JPEG Image
print('Image Properties:') print(f"File Size: {image_properties['image_size']}") print(f"Image Resolution: {image_properties['image_width']} x {image_properties['image_height']}")