Class: PSD::FillOpacity
- Defined in:
- lib/psd/layer/info/fill_opacity.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Attributes inherited from LayerInfo
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from LayerInfo
Constructor Details
This class inherits a constructor from PSD::LayerInfo
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
9 10 11 |
# File 'lib/psd/layer/info/fill_opacity.rb', line 9 def value @value end |
Class Method Details
.should_parse?(key) ⇒ Boolean
5 6 7 |
# File 'lib/psd/layer/info/fill_opacity.rb', line 5 def self.should_parse?(key) key == 'iOpa' end |
Instance Method Details
#parse ⇒ Object
11 12 13 |
# File 'lib/psd/layer/info/fill_opacity.rb', line 11 def parse @value = @file.read_byte.to_i end |