我找到了一个很棒的功能来显示图像中的颜色调色板。我唯一的问题是我需要能够支持png和gif文件。不确定它是否是一个简单的解决方案。感谢任何帮助或指导。
function colorPalette($imageFile, $numColors= 5, $granularity = 5) {
$granularity = max(1, abs((int)$granularity));
$colors = array();
$size = @getimagesize($imageFile);
if($size === false) {
user_error("Unable to get image size data");
return false;
}
$imgData = file_get_contents($imageFile);
$img = @imagecreatefromstring($imgData);
unset($imgData);
if(!$img) {
user_error("Unable to open image file");
return false;
}
for($x = 0; $x < $size[0]; $x += $granularity) {
for($y = 0; $y < $size[1]; $y += $granularity) {
$thisColor = imagecolorat($img, $x, $y);
$rgb = imagecolorsforindex($img, $thisColor);
$red = round(round(($rgb['red'] / 0x33)) * 0x33);
$green = round(round(($rgb['green'] / 0x33)) * 0x33);
$blue = round(round(($rgb['blue'] / 0x33)) * 0x33);
$thisRGB = sprintf('%02X%02X%02X', $red, $green, $blue);
if(array_key_exists($thisRGB, $colors)) {
$colors[$thisRGB]++;
} else {
$colors[$thisRGB] = 1;
}
}
}
arsort($colors);
return array_slice(array_keys($colors), 0, $numColors);
}
修改
我更改了上面的代码以反映我想要完成的任务。
这是该功能的使用方式
$palette = colorPalette('image_path_here', 5);
echo "<table>\n";
foreach($palette as $color) {
echo "<tr><td style='background-color:#$color;width:2em;'> </td><td>#$color</td></tr>\n";
}
echo "</table>\n";
该功能的功劳归于此:http://board.phpbuilder.com/showthread.php?10355107-How-to-get-color-palette-from-images-using-PHP
答案 0 :(得分:2)
imagecreatefromjpeg具有其他格式的等价物,imagecreatefrompng和imagecreatefromgif。您可以查看文件扩展名并使用相应的文件扩展名。