Created
January 30, 2015 18:09
-
-
Save staybuzz/3a65af51df992d56c48b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rmagick' | |
#include Magick | |
white = Magick::Pixel.new(255*256,255*256,255*256) | |
img1 = Magick::Image.read('sample6.jpg').first | |
img1.each_pixel {|pixel,x,y| | |
if pixel.to_color != "red" then | |
img1.pixel_color(x,y,white) | |
end | |
} | |
img1.write('out.jpg') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment