作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我需要在 rmagick 中操作图像的每个像素。我在 IRB(交互式 ruby )中这样做,这就是我所拥有的:
require 'Rmagick'
include Magick
f = Image.new(100,100)
f.display #so far so good. A 100x100 white image is displayed
f.each_pixel {|pixel, c, r| pixel.red = 0}
f.display #the image is still white. It should really be a shade of blue.
我做错了什么?
最佳答案
问题是,您从 each_pixel 返回的数组是一个新数据集。数据需要存储回图像。
改为使用 get_pixels 和 store_pixels:
img = Magick::ImageList.new('img.jpg').first
pixels = img.get_pixels(0,0,img.columns,img.rows)
for pixel in pixels
avg = (pixel.red + pixel.green + pixel.blue) / 3
pixel.red = avg
pixel.blue = avg
pixel.green = avg
end
img.store_pixels(0,0, img.columns, img.rows, pixels)
img.display
关于ruby - Rmagick each_pixel,它是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9079788/
我需要在 rmagick 中操作图像的每个像素。我在 IRB(交互式 ruby )中这样做,这就是我所拥有的: require 'Rmagick' include Magick f = Image.n
我是一名优秀的程序员,十分优秀!