# File lib/pixels.rb, line 340
340:     def each_row_rgba
341:       return Enumerable::Enumerator.new(self, :each_row_rgba) unless block_given?
342:       for y in (0..@height-1)
343:         yield get_row_rgba(y), y
344:       end
345:     end