Class: PSD::ChannelImage

Inherits:
Image
  • Object
show all
Includes:
ImageFormat::LayerRAW, ImageFormat::LayerRLE
Defined in:
lib/psd/channel_image.rb

Overview

Represents an image for a single layer, which differs slightly in format from the full size preview image.

Constant Summary

Constants inherited from Image

Image::COMPRESSIONS

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Image::Export::PNG

#save_as_png, #to_png

Constructor Details

#initialize(file, header, layer) ⇒ ChannelImage

Returns a new instance of ChannelImage.



12
13
14
15
16
17
18
19
20
21
# File 'lib/psd/channel_image.rb', line 12

def initialize(file, header, layer)
  @layer = layer

  @width = @layer.width
  @height = @layer.height

  super(file, header)

  @channels_info = @layer.channels_info
end

Instance Attribute Details

#heightObject (readonly)

Returns the value of attribute height.



10
11
12
# File 'lib/psd/channel_image.rb', line 10

def height
  @height
end

#widthObject (readonly)

Returns the value of attribute width.



10
11
12
# File 'lib/psd/channel_image.rb', line 10

def width
  @width
end

Instance Method Details

#channelsObject



30
31
32
# File 'lib/psd/channel_image.rb', line 30

def channels
  @layer.channels
end

#parseObject



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/psd/channel_image.rb', line 34

def parse
  PSD.logger.debug "Layer = #{@layer.name}, Size = #{width}x#{height}"

  @chan_pos = 0

  @channels_info.each do |ch_info|
    @ch_info = ch_info
    if ch_info[:length] <= 0
      parse_compression! and next
    end

    # If the ID of this current channel is -2, then we assume the dimensions
    # of the layer mask.
    if ch_info[:id] == -2
      @width = @layer.mask.width
      @height = @layer.mask.height
    else
      @width = @layer.width
      @height = @layer.height
    end

    start = @file.tell

    PSD.logger.debug "Channel ##{ch_info[:id]}, length = #{ch_info[:length]}"
    parse_image_data!

    finish = @file.tell

    if finish != start + ch_info[:length]
      PSD.logger.error "Read incorrect number of bytes for channel ##{ch_info[:id]}. Expected = #{ch_info[:length]}, Actual = #{finish - start}"
      @file.seek start + @ch_info[:length]
    end
  end

  if @channel_data.length != @length
    PSD.logger.error "#{channel_data.length} read; expected #{@length}"
  end

  process_image_data
end

#parse_image_data!Object



75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/psd/channel_image.rb', line 75

def parse_image_data!
  @compression = parse_compression!

  case @compression
  when 0 then parse_raw!
  when 1 then parse_rle!
  when 2, 3 then parse_zip!
  else
    PSD.logger.error "Unknown image compression. Attempting to skip."
    @file.seek(@end_pos)
  end
end

#skipObject



23
24
25
26
27
28
# File 'lib/psd/channel_image.rb', line 23

def skip
  PSD.logger.debug "Skipping channel image data. Layer = #{@layer.name}"
  @channels_info.each do |ch|
    @file.seek ch.length, IO::SEEK_CUR
  end
end