# File lib/png.rb, line 471
    def each
      data.reverse.each_with_index do |row, y|
        row.each_with_index do |color, x|
          yield x, y, color
        end
      end
    end