Last active
August 29, 2015 14:01
-
-
Save dbrandt/daf575a3d3b03231742c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import magic | |
f = open("/Users/dbrandt/Desktop/Screen Shot 2014-05-26 at 17.44.34.png") | |
buf = f.read(32) | |
with magic.Magic() as m: | |
print m.id_buffer(buf) | |
"PNG image data, 1094 x 126, 8-bit/color RGB, non-interlaced" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment