一、适用情景:如http://www.teapic.com/list.htm,根据颜色列出相应图片。


二、主程序及API解释:
-
-
-
-
-
-
protected $_colors = null;
-
-
-
protected $_tolerance = 80;
-
-
-
protected $_ignoreColors = array();
-
-
-
protected $_funcs = array('image/png' => 'imagecreatefrompng', 'image/jpeg' => 'imagecreatefromjpeg', 'image/gif' => 'imagecreatefromgif');
-
-
public function __construct(array $colors = null) {
-
-
$this->_colors = $colors;
-
-
-
-
public function setColors(array $colors) {
-