Update README.md
[rainbowstream.git] / rainbowstream / c_image.py
1 from PIL import Image
2 from os.path import join, dirname, getmtime, exists, expanduser
3 from .config import *
4
5 import ctypes
6 import sys
7 import os
8
9
10 def call_c():
11 library = expanduser('~/.image.so')
12 sauce = join(dirname(__file__), 'image.c')
13 if not exists(library) or getmtime(sauce) > getmtime(library):
14 build = "gcc -fPIC -shared -o %s %s" % (library, sauce)
15 assert os.system(build + " >/dev/null 2>&1") == 0
16 image_c = ctypes.cdll.LoadLibrary(library)
17 image_c.init()
18 return image_c.rgb_to_ansi
19
20 rgb2short = call_c()
21
22
23 def pixel_print(ansicolor):
24 sys.stdout.write('\033[48;5;%sm \033[0m' % (ansicolor))
25
26
27 def image_to_display(path):
28 i = Image.open(path)
29 i = i.convert('RGBA')
30 w, h = i.size
31 i.load()
32 rows, columns = os.popen('stty size', 'r').read().split()
33 width = min(w, int(columns) - 2 * IMAGE_SHIFT)
34 height = int(float(h) * (float(width) / float(w)))
35 height //= 2
36 i = i.resize((width, height), Image.ANTIALIAS)
37 height = min(height, IMAGE_MAX_HEIGHT)
38
39 for y in xrange(height):
40 print ' ' * IMAGE_SHIFT,
41 for x in xrange(width):
42 p = i.getpixel((x, y))
43 r, g, b = p[:3]
44 pixel_print(rgb2short(r, g, b))
45 print ''
46
47 if __name__ == '__main__':
48 image_to_display(sys.argv[1])