Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1.  
  2. class ImageIntRatio(ImageSize):
  3.  
  4. def __init__(self, width, height):
  5. super(ImageIntRatio, self).__init__(width, height)
  6.  
  7. def from_string(self, s):
  8. width, height = s.split('/')
  9. return ImageIntRatio(int(width), int(height))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement