Class: PSD::Invert

Inherits:
LayerInfo show all
Defined in:
lib/psd/layer/info/invert.rb

Instance Attribute Summary collapse

Attributes inherited from LayerInfo

#data

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from LayerInfo

#initialize, #skip

Constructor Details

This class inherits a constructor from PSD::LayerInfo

Instance Attribute Details

#invertedObject (readonly)

Returns the value of attribute inverted.



9
10
11
# File 'lib/psd/layer/info/invert.rb', line 9

def inverted
  @inverted
end

Class Method Details

.should_parse?(key) ⇒ Boolean

Returns:

  • (Boolean)


5
6
7
# File 'lib/psd/layer/info/invert.rb', line 5

def self.should_parse?(key)
  key == 'nvrt'
end

Instance Method Details

#parseObject



11
12
13
14
15
# File 'lib/psd/layer/info/invert.rb', line 11

def parse
  # There is no data. The presence of this info block is
  # all that's provided.
  @inverted = true
end