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 'rubygems' | |
| require 'rmagick' | |
| require 'color_namer' | |
| img = Magick::ImageList.new('photo.jpg') | |
| img.resize_to_fit!(500) # resize the image to have faster quantization | |
| quantized = img.quantize(16) # quantize the photo to reduce number of colors | |
| img.destroy! # prevent memory leaks |
NewerOlder