📅  最后修改于: 2023-12-03 14:45:20.373000             🧑  作者: Mango
在这篇文章中,我将向你介绍 getImageColors()
函数,这是一个在 PHP GD 库中非常实用的函数。这个函数使用一个参数——一个 GD 图像资源,以及一个可选的参数——一个整数,返回一个包含该图像中使用的颜色的数组。
array getImageColors ( resource $image [, int $num_colors = 0 ] )
$image
:一个 GD 图像资源。$num_colors
:可选参数。指定返回数组中的颜色数,如果为 0
(默认值),则返回全部颜色。函数返回一个数组,它包含所有使用的颜色。每个元素都是一个关联数组,包括以下键:
red
:红色分量。green
:绿色分量。blue
:蓝色分量。index
:颜色在调色板中的索引。count
:该颜色在图像中出现的次数。<?php
$im = imagecreatefrompng('image.png');
$colors = getImageColors($im, 10);
foreach ($colors as $color) {
printf('(%d, %d, %d) #%06x<br>', $color['red'], $color['green'], $color['blue'], $color['index']);
}
?>
输出示例(对于带有Alpha通道的颜色,最后两位表示Alpha值):
(0, 74, 187) #004abb
(0, 74, 181) #004ab5
(0, 73, 181) #0049b5
(0, 73, 175) #0049af
(0, 63, 150) #003f96
(0, 72, 175) #0048af
(0, 63, 144) #003f90
(0, 62, 144) #003e90
(0, 62, 138) #003e8a
(0, 73, 169) #0049a9
getImageColors()
函数通常用于从输入图片中提取颜色。比如在图片处理或图像识别等场景下,我们往往需要对图片中使用的颜色进行处理或者识别。而 getImageColors()
函数则非常适用于提取颜色这个任务。