Class: RETerm::Components::Image
- Inherits:
-
RETerm::Component
- Object
- RETerm::Component
- RETerm::Components::Image
- Defined in:
- lib/reterm/components/image.rb
Overview
Renders and image to the screen using drawille and chunkpng.
Constant Summary
Constants included from LogHelpers
Instance Attribute Summary
Attributes inherited from RETerm::Component
#activatable, #activate_focus, #highlight_focus, #window
Instance Method Summary collapse
- #draw! ⇒ Object
-
#initialize(args = {}) ⇒ Image
constructor
Initialize the Image component.
- #requeseted_rows ⇒ Object
- #requested_cols ⇒ Object
Methods inherited from RETerm::Component
#activatable?, #activate!, #activate_focus?, #cdk?, #colored?, #colors=, #deactivate!, #deactivate?, #distance_from, #extra_padding, #finalize!, #highlight_focus?, #reactivate!, #requested_rows, #resize, #sync!, #sync_getch
Methods included from KeyBindings
#bind_key, #invoke_key_bindings, #key_bindings, #key_bound?
Methods included from LogHelpers
Methods included from EventDispatcher
Constructor Details
permalink #initialize(args = {}) ⇒ Image
Initialize the Image component
11 12 13 14 |
# File 'lib/reterm/components/image.rb', line 11 def initialize(args={}) super @file = args[:file] end |
Instance Method Details
permalink #draw! ⇒ Object
[View source]
16 17 18 |
# File 'lib/reterm/components/image.rb', line 16 def draw! refresh_win end |
permalink #requeseted_rows ⇒ Object
[View source]
20 21 22 |
# File 'lib/reterm/components/image.rb', line 20 def requeseted_rows image.dimension.height end |
permalink #requested_cols ⇒ Object
[View source]
24 25 26 |
# File 'lib/reterm/components/image.rb', line 24 def requested_cols image.dimension.width end |