Skip to content

Instantly share code, notes, and snippets.

@mikecharles
Created October 5, 2016 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikecharles/90a0243c535e8e209dc27d0093c66059 to your computer and use it in GitHub Desktop.
Save mikecharles/90a0243c535e8e209dc27d0093c66059 to your computer and use it in GitHub Desktop.
Reduce the file size of an image in Python
from PIL import Image
im = Image.open(img_file)
im.convert('P', palette=Image.ADAPTIVE, colors=256).save(img_file)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment