# File lib/PatchedPNG.rb, line 194
    def initialize(height, width, background = Color::White)
      @height = height
      @width = width
      @data = Array.new(@width) { |x| Array.new(@height) { background } }
    end