Skip to content

Instantly share code, notes, and snippets.

@CLozy
Last active July 12, 2022 12:01
Show Gist options
  • Save CLozy/cd02ad1b6d3f421ae8a3800f4b081731 to your computer and use it in GitHub Desktop.
Save CLozy/cd02ad1b6d3f421ae8a3800f4b081731 to your computer and use it in GitHub Desktop.
image = Image.open('/content/gdrive/MyDrive/ComputerVisionEngineer/images/deadstar.jpg')
print(image.size)
#resize image and ignore original aspect ratio
img_resized = image.resize((400,400))
print(img_resized.size)
img_resized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment