Class: PSD::LayerInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/psd/layer_info.rb

Overview

Parent class for all of the extra layer info.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(layer, length) ⇒ LayerInfo

Returns a new instance of LayerInfo.



6
7
8
9
10
11
12
# File 'lib/psd/layer_info.rb', line 6

def initialize(layer, length)
  @layer = layer
  @file = layer.file
  @length = length
  @section_end = @file.tell + @length
  @data = {}
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



4
5
6
# File 'lib/psd/layer_info.rb', line 4

def data
  @data
end

Instance Method Details

#parseObject

Override this - default seeks to end of section



19
20
21
# File 'lib/psd/layer_info.rb', line 19

def parse
  skip
end

#skipObject



14
15
16
# File 'lib/psd/layer_info.rb', line 14

def skip
  @file.seek @section_end
end