X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=blobdiff_plain;f=rainbowstream%2Fpure_image.py;h=0f0a377c3ac350efdf0dfbdc6aa12eda4724aa5d;hp=11beaa57c490a993715d62db40722713e2aff1d4;hb=7dd6112968b1e90a69fe8d7a8a18da8265947921;hpb=816e305ff47ca527c3629861b73068136bbfd6f0 diff --git a/rainbowstream/pure_image.py b/rainbowstream/pure_image.py index 11beaa5..0f0a377 100644 --- a/rainbowstream/pure_image.py +++ b/rainbowstream/pure_image.py @@ -5,6 +5,12 @@ from .config import * import sys import os +""" +This file is borrowed from following gist: +https://gist.github.com/MicahElliott/719710 +It's too slow in compare with C program. +""" + CLUT = [ # color look-up table # 8-bit, RGB hex @@ -275,6 +281,9 @@ CLUT = [ # color look-up table def _create_dicts(): + """ + Create dictionary + """ short2rgb_dict = dict(CLUT) rgb2short_dict = {} for k, v in short2rgb_dict.items(): @@ -285,24 +294,39 @@ RGB2SHORT_DICT, SHORT2RGB_DICT = _create_dicts() def short2rgb(short): + """ + Short to RGB + """ return SHORT2RGB_DICT[short] def pixel_print(ansicolor): + """ + Print a pixel with given Ansi color + """ sys.stdout.write('\033[48;5;%sm \033[0m' % (ansicolor)) def hex_to_rgb(value): + """ + Hex to RGB + """ value = value.lstrip('#') lv = len(value) return tuple(int(value[i:i + lv / 3], 16) for i in range(0, lv, lv / 3)) def rgb_to_hex(rgb): + """ + RGB to Hex + """ return '%02x%02x%02x' % rgb def rgb2short(r, g, b): + """ + RGB to short + """ dist = lambda s, d: (s[0] - d[0]) ** 2 + \ (s[1] - d[1]) ** 2 + (s[2] - d[2]) ** 2 ary = [hex_to_rgb(hex) for hex in RGB2SHORT_DICT] @@ -310,25 +334,36 @@ def rgb2short(r, g, b): return RGB2SHORT_DICT[rgb_to_hex(m)] -def image_to_display(path): +def image_to_display(path, start=None, length=None): + """ + Display an image + """ + rows, columns = os.popen('stty size', 'r').read().split() + if not start: + start = IMAGE_SHIFT + if not length: + length = int(columns) - 2 * start i = Image.open(path) i = i.convert('RGBA') w, h = i.size i.load() - rows, columns = os.popen('stty size', 'r').read().split() - width = min(w, int(columns) - 2 * IMAGE_SHIFT) + width = min(w, length) height = int(float(h) * (float(width) / float(w))) height //= 2 i = i.resize((width, height), Image.BICUBIC) height = min(height, IMAGE_MAX_HEIGHT) for y in xrange(height): - print ' ' * IMAGE_SHIFT, + sys.stdout.write(' ' * start) for x in xrange(width): p = i.getpixel((x, y)) r, g, b = p[:3] pixel_print(rgb2short(r, g, b)) - print '' + sys.stdout.write('\n') + +""" +For direct using purpose +""" if __name__ == '__main__': image_to_display(sys.argv[1])