Skip to content

Instantly share code, notes, and snippets.

@buhii
Created January 11, 2016 15:29
Show Gist options
  • Save buhii/7d2aedc5ec2b8b42edbd to your computer and use it in GitHub Desktop.
Save buhii/7d2aedc5ec2b8b42edbd to your computer and use it in GitHub Desktop.
import png
f = open('icon.png', 'wb')
w = png.Writer(1, 1, greyscale=True)
w.write(f, [[240]])
f.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment