Skip to content

Instantly share code, notes, and snippets.

@foca
Created September 26, 2011 16:09
Show Gist options
  • Save foca/1242607 to your computer and use it in GitHub Desktop.
Save foca/1242607 to your computer and use it in GitHub Desktop.
image = ChunkyPNG::Image.from_file("./app/assets/images/rails.png")
colors = image.pixels.inject(Hash.new(0)) do |counts, pixel|
color = ChunkyPNG::Color.to_truecolor_alpha_bytes(pixel)
counts[color] += 1
counts
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment