e1bdae4db3b3d760bb9c722de60ee5bb3434227a
[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 from .py3patch import *
5
6 import ctypes
7 import sys
8 import os
9
10
11 def call_c():
12 """
13 Call the C program for converting RGB to Ansi colors
14 """
15 library = expanduser('~/.image.so')
16 sauce = join(dirname(__file__), 'image.c')
17 if not exists(library) or getmtime(sauce) > getmtime(library):
18 build = "cc -fPIC -shared -o %s %s" % (library, sauce)
19 os.system(build + " >/dev/null 2>&1")
20 image_c = ctypes.cdll.LoadLibrary(library)
21 image_c.init()
22 return image_c.rgb_to_ansi
23
24 rgb2short = call_c()
25
26
27 def pixel_print(ansicolor):
28 """
29 Print a pixel with given Ansi color
30 """
31 sys.stdout.write('\033[48;5;%sm \033[0m' % (ansicolor))
32
33
34 def block_print(higher, lower):
35 """
36 Print two pixels arranged above each other with Ansi color.
37 Abuses Unicode to print two pixels in the space of one terminal block.
38 """
39 r0, g0, b0 = lower[:3]
40 r1, g1, b1 = higher[:3]
41
42 if c['24BIT'] is True:
43 sys.stdout.write('\033[38;2;%d;%d;%dm\033[48;2;%d;%d;%dm▄\033[0m'
44 % (r1, g1, b1, r0, g0, b0))
45 else:
46 i0 = rgb2short(r0, g0, b0)
47 i1 = rgb2short(r1, g1, b1)
48 sys.stdout.write('\033[38;5;%sm\033[48;5;%sm▄\033[0m' % (i1, i0))
49
50
51 def image_to_display(path, start=None, length=None):
52 """
53 Display an image
54 """
55 rows, columns = os.popen('stty size', 'r').read().split()
56 if not start:
57 start = c['IMAGE_SHIFT']
58 if not length:
59 length = int(columns) - 2 * start
60 i = Image.open(path)
61 i = i.convert('RGBA')
62 w, h = i.size
63 i.load()
64 width = min(w, length)
65 height = int(float(h) * (float(width) / float(w)))
66 i = i.resize((width, height), Image.ANTIALIAS)
67 height = min(height, c['IMAGE_MAX_HEIGHT'])
68
69 for real_y in xrange(height // 2):
70 sys.stdout.write(' ' * start)
71 for x in xrange(width):
72 y = real_y * 2
73 p0 = i.getpixel((x, y))
74 p1 = i.getpixel((x, y+1))
75 block_print(p1, p0)
76 sys.stdout.write('\n')
77
78
79 """
80 For direct using purpose
81 """
82 if __name__ == '__main__':
83 image_to_display(sys.argv[1])