old anime news and some other shit.
categories: color to name, projects
tags:

Ok, so I was coding some stuff for naranai and I was thinking to myself that it’d be cool if I could automatically detect a few dominant colors in a picture and use it to make them searchable. To start off honestly, there aren’t many people doing too many things with PHP and color detection in images. I found a spiffy little class that gets me half-way where I want to be. That’s where the problem comes in! The color extract class gets me to a nice solid color, and it does rounding so I don’t get back 500 results.

So I get the sweet hex back and now I want a relative hue. You know? Brown, red, penis. So I start trying to look around for a list of rough hues and the RGB values relative to them.  I didn’t have much luck, but lucky for me, someone had already done the legwork. The only minor issue was that it was JavaScript. SO WHAT DID I DO?!

I FIXED IT UP! Oh, as I side note, there are some color names I don’t necessarily agree with and I’ll fix them up over time. If there are any that you don’t agree with, add a comment. Yes this will be open source.

imagecolors

Download: Color to Name (332)
Github: http://github.com/digiwombat/color-to-name/tree/master

Update: I changed the code over so it uses an array rather than JSON stuff. Doesn’t see much faster, but apparently some idiots don’t install JSON support for PHP.