Module: Catpix
- Defined in:
- lib/funny_terminal/catpix.rb,
lib/funny_terminal/catpix/private.rb
Overview
Provides a function to print images in the terminal. A range of different formats is supported (check out what ImageMagick supports). Under the hood, this module uses two components:
-
[rmagick](rmagick.github.io/) to read and scale the images and
-
[tco](github.com/pazdera/tco) to map their pixels on the extended colour palette in the terminal.
Some other minor features like centering and handling background colours are supplied directly by this module.
Class Method Summary collapse
-
.print_image(path, options = {}) ⇒ Object
Print an image to the terminal.
- .print_image_url(url) ⇒ Object
Class Method Details
.print_image(path, options = {}) ⇒ Object
Print an image to the terminal.
All formats supported by ImageMagick are supported. The image’s colours will be mapped onto the extended 256 colour palette. Also by default, it will be scaled down to fit the width of the terminal while keeping its proportions. This can be changed using the ‘options` parameter.
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/funny_terminal/catpix.rb', line 49 def self.print_image(path, ={}) = .merge! if [:resolution] == 'auto' [:resolution] = can_use_utf8? ? 'high' : 'low' end @@resolution = [:resolution] img = load_image path resize! img, [:limit_x], [:limit_y] margins = get_margins img, [:center_x], [:center_y] margins[:colour] = [:bg_fill] ? [:bg] : nil if high_res? do_print_image_hr img, margins, else do_print_image_lr img, margins, end end |
.print_image_url(url) ⇒ Object
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/funny_terminal/catpix.rb', line 70 def self.print_image_url(url) = { resolution: 'auto', limit_x: 0.5, limit_y: 0, center_x: true, center_y: true, bg: "white", bg_fill: true, } if [:resolution] == 'auto' [:resolution] = can_use_utf8? ? 'high' : 'low' end @@resolution = [:resolution] img = load_image_from_url url resize! img, [:limit_x], [:limit_y] margins = get_margins img, [:center_x], [:center_y] margins[:colour] = [:bg_fill] ? [:bg] : nil if high_res? do_print_image_hr img, margins, else do_print_image_lr img, margins, end end |