5 lines
97 B
Python
5 lines
97 B
Python
from PIL import Image
|
|
|
|
def extract_image_size(path):
|
|
im = Image.open(path)
|
|
return im.size |