How do I get a size of a pictures sides with PIL or any other Python library?
See Question&Answers more detail:osHow do I get a size of a pictures sides with PIL or any other Python library?
See Question&Answers more detail:osfrom PIL import Image
im = Image.open('whatever.png')
width, height = im.size
According to the documentation.