0959150bd3d300fb6b2a1f07cf18e02bd40a4989
[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(pixel):
28 """
29 Print a pixel with given Ansi color
30 """
31 r, g, b = pixel[:3]
32
33 if c['24BIT'] is True:
34 sys.stdout.write('\033[48;2;%d;%d;%dm \033[0m'
35 % (r, g, b))
36 else:
37 ansicolor = rgb2short(r, g, b)
38 sys.stdout.write('\033[48;5;%sm \033[0m' % (ansicolor))
39
40
41 def block_print(higher, lower):
42 """
43 Print two pixels arranged above each other with Ansi color.
44 Abuses Unicode to print two pixels in the space of one terminal block.
45 """
46 r0, g0, b0 = lower[:3]
47 r1, g1, b1 = higher[:3]
48
49 if c['24BIT'] is True:
50 sys.stdout.write('\033[38;2;%d;%d;%dm\033[48;2;%d;%d;%dm▄\033[0m'
51 % (r1, g1, b1, r0, g0, b0))
52 else:
53 i0 = rgb2short(r0, g0, b0)
54 i1 = rgb2short(r1, g1, b1)
55 sys.stdout.write('\033[38;5;%sm\033[48;5;%sm▄\033[0m' % (i1, i0))
56
57
58 def image_to_display(path, start=None, length=None):
59 """
60 Display an image
61 """
62 rows, columns = os.popen('stty size', 'r').read().split()
63 if not start:
64 start = c['IMAGE_SHIFT']
65 if not length:
66 length = int(columns) - 2 * start
67 i = Image.open(path)
68 i = i.convert('RGBA')
69 w, h = i.size
70 i.load()
71 width = min(w, length)
72 height = int(float(h) * (float(width) / float(w)))
73 if c['HIGHER_RESOLUTION'] is False:
74 height //= 2
75 i = i.resize((width, height), Image.ANTIALIAS)
76 height = min(height, c['IMAGE_MAX_HEIGHT'])
77
78 if c['HIGHER_RESOLUTION'] is True:
79 for real_y in xrange(height // 2):
80 sys.stdout.write(' ' * start)
81 for x in xrange(width):
82 y = real_y * 2
83 p0 = i.getpixel((x, y))
84 p1 = i.getpixel((x, y+1))
85 block_print(p1, p0)
86 sys.stdout.write('\n')
87 else:
88 for y in xrange(height):
89 sys.stdout.write(' ' * start)
90 for x in xrange(width):
91 p = i.getpixel((x, y))
92 pixel_print(p)
93 sys.stdout.write('\n')
94
95
96 """
97 For direct using purpose
98 """
99 if __name__ == '__main__':
100 image_to_display(sys.argv[1])