Method: Magick::Image#each_pixel
- Defined in:
- lib/rmagick_internal.rb
#each_pixel ⇒ Object
Thanks to Russell Norris!
829 830 831 832 833 834 |
# File 'lib/rmagick_internal.rb', line 829 def each_pixel get_pixels(0, 0, columns, rows).each_with_index do |p, n| yield(p, n % columns, n / columns) end self end |