gpt4 book ai didi

ruby - Rmagick each_pixel,它是如何工作的?

转载 作者:数据小太阳 更新时间:2023-10-29 08:24:35 35 4
gpt4 key购买 nike

我需要在 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/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com