# File lib/PatchedPNG.rb, line 221
    def each
      @data.each_with_index do |row, y|
        row.each_with_index do |pixel, x|
          yield x, y, color
        end
      end
    end