class ChunkyPNG::Datastream

def write(io)

Parameters:
  • io (IO) -- The output stream to write to.
def write(io)
  io << SIGNATURE
  each_chunk { |c| c.write(io) }
end