19 lines
414 B
Python
19 lines
414 B
Python
|
#!/usr/bin/python
|
||
|
from PIL import Image
|
||
|
import sys
|
||
|
|
||
|
"""Convert image to raw binary using Python Imaging Library."""
|
||
|
|
||
|
if len(sys.argv) != 3:
|
||
|
print "Usage: %s <source> <target>"
|
||
|
print "WARNING: It only converts 8x8 pixel images at 8bit the moment."
|
||
|
|
||
|
im = Image.open(sys.argv[1])
|
||
|
output = open(sys.argv[2], "wb")
|
||
|
for x in range(8):
|
||
|
for y in range(8):
|
||
|
val = im.getpixel((x, y))
|
||
|
output.write(chr(val))
|
||
|
|
||
|
|