How to use 'pil image size' in Python

Every line of 'pil image size' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
69def GetImgSize(self, image):
70 """
71 Returns the image size (width, height) in pixel
72 """
73 i = self.files.get(image)
74 if not i:
75 return 0,0
76 try:
77 im = Image.open(i.path)
78 return im.size
79 except:
80 return 0,0

Related snippets