class ChunkyPNG::Chunk::Generic

def self.read(type, content)

Returns:
  • (ChunkyPNG::Chunk::Generic) - The new chunk instance.

Parameters:
  • content (String) -- The content read from the chunk.
  • type (String) -- The four character chunk type indicator.
def self.read(type, content)
  new(type, content)
end