We can check size (resolution) of an image in Python by using PILarrow-up-right.
>>> from PIL import Image >>> image = Image.open("image.png") >>> print(image.size) (1366, 768)
Source: Kitearrow-up-right
Last updated 1 year ago