Skip to content

Instantly share code, notes, and snippets.

@Kennyl
Created February 21, 2017 15:10
Show Gist options
  • Save Kennyl/5854a11a0793a90fc8ea6c4746ff9720 to your computer and use it in GitHub Desktop.
Save Kennyl/5854a11a0793a90fc8ea6c4746ff9720 to your computer and use it in GitHub Desktop.
Sample for python Gif to PNG
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from PIL import Image, ImageDraw, ImageFont #dynamic import
gif='a.gif'
img = Image.open(gif)
img.save(gif+".png",'png', optimize=True, quality=70)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment