forum.coppermine-gallery.net

No Support => Feature requests => Topic started by: JeWelz on October 28, 2004, 10:57:57 pm

Title: Add Advanced Search Criteria by Color
Post by: JeWelz on October 28, 2004, 10:57:57 pm
It would be really neat to be able to have an option to search the photos by the average color in the photo.

Something like this:

http://istockpro.com/file_search.php?action=color&color=9,12,9

Thanks!
Julie

Title: Re: Add Advanced Search Criteria by Color
Post by: Tarique Sani on October 29, 2004, 08:26:52 am
I have been trying to figure out the algo for capturing,  calculatiing and storing the color information of a picture into the the database (this has to be done automatically - manual would sux) - once that is in place I will gladly add this much needed and WOW factor feature
Title: Re: Add Advanced Search Criteria by Color
Post by: JeWelz on March 31, 2005, 03:28:40 am

http://us4.php.net/manual/en/function.imagecolorat.php

      $rgb = ImageColorAt($dest, 0, 0);
      $r = ($rgb >> 16) & 0xFF;
      $g = ($rgb >> 8) & 0xFF;
      $b = $rgb & 0xFF;


Something like this... if I figure it out I'll share it...

Title: Re: Add Advanced Search Criteria by Color
Post by: Aditya Mooley on March 31, 2005, 06:52:09 am
http://forum.coppermine-gallery.net/index.php?topic=12470.0