Added flag to enable higher resolution printing
authorJoseph Hallett <bogwonch@bogwonch.net>
Thu, 30 Jul 2015 22:28:23 +0000 (23:28 +0100)
committerJoseph Hallett <bogwonch@bogwonch.net>
Thu, 30 Jul 2015 22:28:23 +0000 (23:28 +0100)
Restores the default behavior if no flags are added

rainbowstream/c_image.py
rainbowstream/rainbow.py

index e1bdae4db3b3d760bb9c722de60ee5bb3434227a..a1395f3acfe53fd81b0561e9a4c5ad833c631fbc 100644 (file)
@@ -24,10 +24,12 @@ def call_c():
 rgb2short = call_c()
 
 
-def pixel_print(ansicolor):
+def pixel_print(pixel):
     """
     Print a pixel with given Ansi color
     """
+    r, g, b = pixel[:3]
+    ansicolor = rgb2short(r, g, b)
     sys.stdout.write('\033[48;5;%sm \033[0m' % (ansicolor))
 
 
@@ -63,17 +65,27 @@ def image_to_display(path, start=None, length=None):
     i.load()
     width = min(w, length)
     height = int(float(h) * (float(width) / float(w)))
+    if c['HIGHER_RESOLUTION'] is False:
+        height //= 2
     i = i.resize((width, height), Image.ANTIALIAS)
     height = min(height, c['IMAGE_MAX_HEIGHT'])
 
-    for real_y in xrange(height // 2):
-        sys.stdout.write(' ' * start)
-        for x in xrange(width):
-            y = real_y * 2
-            p0 = i.getpixel((x, y))
-            p1 = i.getpixel((x, y+1))
-            block_print(p1, p0)
-        sys.stdout.write('\n')
+    if c['HIGHER_RESOLUTION'] is True:
+        for real_y in xrange(height // 2):
+            sys.stdout.write(' ' * start)
+            for x in xrange(width):
+                y = real_y * 2
+                p0 = i.getpixel((x, y))
+                p1 = i.getpixel((x, y+1))
+                block_print(p1, p0)
+            sys.stdout.write('\n')
+    else:
+        for y in xrange(height):
+            sys.stdout.write(' ' * start)
+            for x in xrange(width):
+                p = i.getpixel((x, y))
+                pixel_print(p)
+            sys.stdout.write('\n')
 
 
 """
index cf25883ed5d14a5bf9de67f795b84479e753d541..a5cc190b858f175121cf5596a001077684b57899 100644 (file)
@@ -72,6 +72,11 @@ def parse_arguments():
         '--color-24bit',
         action='store_true',
         help='Display images using 24bit color codes.')
+    parser.add_argument(
+        '-hr',
+        '--higher-resolution',
+        action='store_true',
+        help='Display images in high(er) resolution.')
     parser.add_argument(
         '-ph',
         '--proxy-host',
@@ -238,8 +243,12 @@ def init(args):
     c['message_dict'] = []
     # Image on term
     c['IMAGE_ON_TERM'] = args.image_on_term
-    c['24BIT'] = args.color_24bit
     set_config('IMAGE_ON_TERM', str(c['IMAGE_ON_TERM']))
+    # Use 24 bit color
+    c['24BIT'] = args.color_24bit
+    # Print images using half height blocks
+    c['HIGHER_RESOLUTION'] = args.higher_resolution
+    set_config('HIGHER_RESOLUTION', str(c['HIGHER_RESOLUTION']))
     # Check type of ONLY_LIST and IGNORE_LIST
     if not isinstance(c['ONLY_LIST'], list):
         printNicely(red('ONLY_LIST is not a valid list value.'))