blackghost
blackghost

Reputation: 703

Change pixel color in Rmagick

I know how to get the color of a pixel with Rmagick:

image.pixel_color(0,0).

But, how do you change the value of that pixel?

Upvotes: 1

Views: 1283

Answers (1)

Pafjo
Pafjo

Reputation: 5019

pixel_color takes a third arguments which is the color to use for the current pixel. This can be either a color name like 'white' or an instance of Pixel.

Example: img = image.pixel_color(0,0, 'white')

Upvotes: 2

Related Questions