I am trying to obtain the standard dpi values from images (the one depicted in the image attached)
I tried pillow method .get('dpi') and it fgives me no results
I tried to obtain the properties and that it the output i got:
from PIL import Image
image_file = Image.open(jpg)
image_file.info
>>>> [enter image description here][1]{'adobe': 100, 'adobe_transform': 100}
A user can see the properties form the image and check the dpi, how can i extract it from Python