Class: ChunkyPNG::Chunk::End
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
Class Method Summary collapse
-
.read(type, content) ⇒ ChunkyPNG::Chunk::End
Reads the END chunk.
Instance Method Summary collapse
-
#content ⇒ ""
Returns an empty string, because this chunk should always be empty.
-
#initialize ⇒ End
constructor
A new instance of End.
Methods inherited from Base
Constructor Details
#initialize ⇒ End
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.
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.
194 195 196 |
# File 'lib/chunky_png/chunk.rb', line 194 def content "".b end |