Hi! Using PHP 5, can an a section of an image be selected, and return the RGB values of 3 of most most average colours, contained in the selected area of the image?
You can receive a pixel's color using PHP as far as I know, but I don't think you could really get the top 3 used colors. FOr that you'd have to go through pixel by pixel and tally up all the colors. That's the only way I can think to do it.