| Module | Limelight::Builtin::Players::Image |
| In: |
lib/limelight/builtin/players/image.rb
|
# File lib/limelight/builtin/players/image.rb, line 30
30: def image
31: return image_panel.image_file
32: end
# File lib/limelight/builtin/players/image.rb, line 22
22: def image=(path)
23: image_panel.image_file = path
24: end
# File lib/limelight/builtin/players/image.rb, line 26
26: def image_data=(data_hash)
27: image_panel.setImageData(data_hash[:data])
28: end
# File lib/limelight/builtin/players/image.rb, line 38
38: def rotation
39: return image_panel.rotation
40: end
# File lib/limelight/builtin/players/image.rb, line 34
34: def rotation=(value)
35: image_panel.rotation = value.to_f
36: end