Class: PSD::VectorStrokeContent
- Defined in:
- lib/psd/layer/info/vector_stroke_content.rb
Instance Attribute Summary collapse
-
#key ⇒ Object
readonly
Returns the value of attribute key.
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
#key ⇒ Object (readonly)
Returns the value of attribute key.
9 10 11 |
# File 'lib/psd/layer/info/vector_stroke_content.rb', line 9 def key @key end |
Class Method Details
.should_parse?(key) ⇒ Boolean
5 6 7 |
# File 'lib/psd/layer/info/vector_stroke_content.rb', line 5 def self.should_parse?(key) key == 'vscg' end |
Instance Method Details
#parse ⇒ Object
11 12 13 14 15 |
# File 'lib/psd/layer/info/vector_stroke_content.rb', line 11 def parse key = @file.read_string(4) version = @file.read_int @data = Descriptor.new(@file).parse end |