Skip to content

Instantly share code, notes, and snippets.

@rooty
Created September 13, 2018 06:25
Show Gist options
  • Save rooty/5f3721706dfdee2fd8e6281349436e97 to your computer and use it in GitHub Desktop.
Save rooty/5f3721706dfdee2fd8e6281349436e97 to your computer and use it in GitHub Desktop.
Определяем разрешение JPEG изображения
def jpeg_res(filename):
# open image for reading in binary mode
with open(filename,'rb') as img_file:
# height of img (in 2 bytes), 164th position
img_file.seek(163)
# read the 2 bytes
a = img_file.read(2)
# calculate height
height = (a[0] << 8) + a[1]
# next 2 bytes is width
a = img_file.read(2)
# calculate width
width = (a[0] << 8) + a[1]
print("The resolution of the image is",width,"x",height)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment