Class: ChunkyPNG::Chunk::End

Inherits:
Base
  • Object
show all
Defined in:
lib/chunky_png/chunk.rb

Overview

The End (IEND) chunk indicates the last chunk of a PNG stream. It does not contain any data.

Instance Attribute Summary

Attributes inherited from Base

#type

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#write, #write_with_crc

Constructor Details

#initializeEnd

Returns a new instance of End.



176
177
178
# File 'lib/chunky_png/chunk.rb', line 176

def initialize
  super("IEND")
end

Class Method Details

.read(type, content) ⇒ ChunkyPNG::Chunk::End

Reads the END chunk. It will check if the content is empty.

Parameters:

  • type (String)

    The four character chunk type indicator (= “IEND”).

  • content (String)

    The content read from the chunk. Should be empty.

Returns:

Raises:



187
188
189
190
# File 'lib/chunky_png/chunk.rb', line 187

def self.read(type, content)
  raise ExpectationFailed, "The IEND chunk should be empty!" if content.bytesize > 0
  new
end

Instance Method Details

#content""

Returns an empty string, because this chunk should always be empty.

Returns:

  • ("")

    An empty string.



194
195
196
# File 'lib/chunky_png/chunk.rb', line 194

def content
  "".b
end