Skip to content

Instantly share code, notes, and snippets.

@mconnell
Created March 12, 2010 14:29
Show Gist options
  • Save mconnell/330356 to your computer and use it in GitHub Desktop.
Save mconnell/330356 to your computer and use it in GitHub Desktop.
class ImageMagick
def self.palette(image_file, number_of_colours = 5)
image_details = %x(convert #{image_file} +dither -depth 8 -colors #{number_of_colours} -unique-colors txt:-)
image_details.scan(/#[a-z0-9]{6}/i)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment