Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  
  2. import Image
  3. import struct
  4.  
  5. png = Image.open("image.png")
  6. data = png.tobytes()
  7.  
  8. for b in range(0, len(data), 8):
  9.     bits = struct.unpack('BBBBBBBB', data[b:b+8])
  10.     val = sum(map(lambda (x,y): x*y, zip(bits, [128,64,32,16,8,4,2,1])))
  11.     print('{0} - {1}'.format(bits, chr(val)))
  12.  
  13. #print repr(data)