# File lib/pixels.rb, line 326
326:     def each_row_rgb
327:       return Enumerable::Enumerator.new(self, :each_row_rgb) unless block_given?
328:       for y in (0..@height-1)
329:         yield get_row_rgb(y), y
330:       end
331:     end