Skip to content

Instantly share code, notes, and snippets.

@CLozy
Last active July 12, 2022 11:53
Show Gist options
  • Save CLozy/38f3084532a3dcff3a272b502c39ca4d to your computer and use it in GitHub Desktop.
Save CLozy/38f3084532a3dcff3a272b502c39ca4d to your computer and use it in GitHub Desktop.
resizing image
#create thumbnail of an image
image = Image.open('/content/gdrive/MyDrive/ComputerVisionEngineer/images/deadstar.jpg')
#report size
print(image.size)
#create thumbnail and preserve aspect ratio
image.thumbnail((400,400))
#print size
print(image.size)
image
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment