I'm using from PIL import Image, ExifTags to access exif data of images.
exif.get('ExposureTime') returns 0.008 but I would like it expressed as 1/125. I can see this value under the ExposureTime dict. But how do I access it?
I'm using from PIL import Image, ExifTags to access exif data of images.
exif.get('ExposureTime') returns 0.008 but I would like it expressed as 1/125. I can see this value under the ExposureTime dict. But how do I access it?