from PIL import Image
im = Image.open('whatever.png')
width, height = im.size
In the above code what are the dimensions of width and height? I mean are they in mm,inches or something else?
If I refer a pixel by coordinates (x,y) then what will be the distance of that pixel from 0,0 or top left corner in any physical unit like mm, inches etc?