PHP Conference Japan 2024

imagecolorset

(PHP 4, PHP 5, PHP 7, PHP 8)

imagecolorset设置指定调色板索引的颜色

描述

imagecolorset(
    GdImage $image,
    int $color,
    int $red,
    int $green,
    int $blue,
    int $alpha = 0
): ?false

此函数将调色板中指定的索引设置为指定颜色。这对于在调色板图像中创建类似于填充的效果非常有用,而无需执行实际的填充操作带来的开销。

参数

image

一个 GdImage 对象,由图像创建函数之一返回,例如 imagecreatetruecolor()

color

调色板中的索引。

red

红色分量的值。

green

绿色分量的值。

blue

蓝色分量的值。

alpha

alpha 分量的值。

返回值

如果成功,则函数返回 null,如果失败,则返回 false

变更日志

版本 描述
8.0.0 image 现在期望一个 GdImage 实例;以前,期望一个有效的 gd resource

示例

示例 #1 imagecolorset() 示例

<?php
// 创建一个 300x100 的图像
$im = imagecreate(300, 100);

// 将背景设置为红色
imagecolorallocate($im, 255, 0, 0);

// 获取背景的颜色索引
$bg = imagecolorat($im, 0, 0);

// 将背景设置为蓝色
imagecolorset($im, $bg, 0, 0, 255);

// 将图像输出到浏览器
header('Content-Type: image/png');

imagepng($im);
imagedestroy($im);
?>

参见

添加注释

用户贡献的注释 10 条注释

moxleystratton.com
18 年前
如果您想将彩色图像转换为灰度图像,而不会创建斑驳的图像,请使用此颜色计算
<?php
function imagetograyscale($im)
{
if (
imageistruecolor($im)) {
imagetruecolortopalette($im, false, 256);
}

for (
$c = 0; $c < imagecolorstotal($im); $c++) {
$col = imagecolorsforindex($im, $c);
$gray = round(0.299 * $col['red'] + 0.587 * $col['green'] + 0.114 * $col['blue']);
imagecolorset($im, $c, $gray, $gray, $gray);
}
}
?>
heavyraptor2 at hotmail dot com
16 年前
我一直在寻找一个简单的函数来“着色”图像,但没有成功……看起来很多人对“着色”图像的含义不同,因为实际上着色是指将旧颜色的灰度与新颜色相乘。因此,白色像素将变成着色目标颜色的 100%,而黑色像素将保持黑色(我知道我可能解释得不好……希望您理解了,否则请查看函数代码下面的示例)。

<?php
function image_colorize(&$img,$rgb) {
imageTrueColorToPalette($img,true,256);
$numColors = imageColorsTotal($img);

for (
$x = 0; $x < $numColors; $x++) {
list(
$r,$g,$b) = array_values(imageColorsForIndex($img,$x));

// 计算灰度百分比
$grayscale = ($r + $g + $b) / 3 / 0xff;

imageColorSet($img,$x,
$grayscale * $rgb[0],
$grayscale * $rgb[1],
$grayscale * $rgb[2]
);
}

return
true;
}
?>

使用示例
<?php
$color
= array(0xff,0xaa,0x2a); // 要转换成的颜色
$url = 'http://sundog.net/images/uploads/1_google_logo.jpg';
$img = imageCreateFromJpeg($url);

image_colorize($img,$color);

header('Content-type: image/gif');
imageGif($img);
exit;
?>

尽情享受
dade dot c at email dot it
20年前
如果您想在您的网站中实现颜色主题系统,这将非常有用... 请尝试一下
Davide Candiloro 意大利

函数 colorize ($pngpath, $r, $g, $b)
/*
需要:$pngpath 为具有 64 色调色板的灰度 PNG-8 图像的有效路径
$r、$g、$b 为 0..255 范围内的整数
效果:返回用 $r、$g、$b 表示的颜色着色的 png 图像。
*/
{
header("Content-type: image/png");
$im = imagecreatefrompng("images/table.png");

imagetruecolortopalette($im, FALSE, 256);

for ($c = 0; $c < 64; $c++){ /*64 是 PNG-8 调色板中的颜色数*/
$col = imagecolorsforindex($im, $c);
imagecolorset ( $im, $c, $r*$col['red']/256, $g*$col['green']/256, $b*$col['blue']/256); /*用彩色调色板替换原始灰度调色板*/
}

imagepng($im);
imagedestroy($im);
}
m4551 at abasoft dot it
20年前
这是一个将图像转换为灰度级的函数,即使是从真彩色源(jpeg 或 png)转换。

质量略差,但速度很快...

function imagegreyscale(&$img, $dither=1) {
if (!($t = imagecolorstotal($img))) {
$t = 256;
imagetruecolortopalette($img, $dither, $t);
}
for ($c = 0; $c < $t; $c++) {
$col = imagecolorsforindex($img, $c);
$min = min($col['red'],$col['green'],$col['blue']);
$max = max($col['red'],$col['green'],$col['blue']);
$i = ($max+$min)/2;
imagecolorset($img, $c, $i, $i, $i);
}
}
Thomas Mueller
16 年前
这是一个用于渐变风格着色图片的函数。

您只需传递一个 img 对象和一个颜色数组。

例如

$arr = array('#000000', '#990000', '#00FFFF', '#FFFFDD');
colorize ($img, $arr);

<?php
function colorize($imgdata, $palette)
{
imageTrueColorToPalette($imgdata,false,0xFF);
$l = count($palette)-1;
$i = imagecolorstotal($imgdata);
while (
$i--)
{
list(
$r,$g,$b) = array_values(imageColorsForIndex($imgdata,$i));

$grayscale = ($r*.3 + $g*.59 +$b*.11) / 0xFF;

$pos = $l*$grayscale;

$perc = $pos-floor($pos);

$tbase = str_replace("#", '', $palette[$pos]);
$baseR = hexdec(substr($tbase,0,2));
$baseG = hexdec(substr($tbase,2,2));
$baseB = hexdec(substr($tbase,4,2));

$tmix = str_replace("#", '', $palette[$pos+1]);
$mixR = hexdec(substr($tmix,0,2));
$mixG = hexdec(substr($tmix,2,2));
$mixB = hexdec(substr($tmix,4,2));

$resR = $baseR+($mixR-$baseR)*$perc;
$resG = $baseG+($mixG-$baseG)*$perc;
$resB = $baseB+($mixB-$baseB)*$perc;

imagecolorset($imgdata, $i, $resR, $resG, $resB);
}
}
?>
Daniel Klein
9年前
如果您是从头开始创建调色板图像,则必须在每个索引上使用 imagecolorallocate(),然后才能在其上使用 imagecolorset()。
Bartman
15年前
我遇到了与 heavyraptor2 相同的问题,所以我创建了这个函数...
<?php
function imagecolorize($im,$endcolor){
//函数接收图像并将其中的黑色转换为$endcolor,白色转换为白色,
//介于两者之间的颜色则根据相应的渐变进行转换。
//$endcolor 应为 6 位十六进制颜色代码。

//确保图像具有可用的调色板
if (imageistruecolor($im)) {
imagetruecolortopalette($im, false, 256);
}

//首先将其转换为灰度图像,以确保结果一致(感谢 moxleystratton.com)
//如果您希望输出基于例如红色通道,则可以注释掉此循环
//(为此,请查看最后一个循环中的$gray变量)
for ($c = 0; $c < imagecolorstotal($im); $c++) {
$col = imagecolorsforindex($im, $c);
$gray = round(0.299 * $col['red'] + 0.587 * $col['green'] + 0.114 * $col['blue']);
imagecolorset($im, $c, $gray, $gray, $gray);
}

//将结束颜色转换为十进制
$EndcolorRGB['r'] = hexdec( substr($endcolor, 0, 2));
$EndcolorRGB['g'] = hexdec( substr($endcolor, 2, 2));
$EndcolorRGB['b'] = hexdec( substr($endcolor, 4, 2));

//确定渐变增量
$stepR = (255-$EndcolorRGB['r'])/255.0;
$stepG = (255-$EndcolorRGB['g'])/255.0;
$stepB = (255-$EndcolorRGB['b'])/255.0;

//aColor 数组包含从结束颜色(i=0)到白色(i=255)的 256 个渐变颜色。
$aColor = array();
for (
$i = 0; $i<=255; $i++){
$aColor[$i]['r'] = $EndcolorRGB['r'] + ($i*$stepR);
$aColor[$i]['g'] = $EndcolorRGB['g'] + ($i*$stepG);
$aColor[$i]['b'] = $EndcolorRGB['b'] + ($i*$stepB);
}

//对于每个颜色索引,我们现在用$aColor替换$gray值
for ($c = 0; $c < imagecolorstotal($im); $c++){
$currentColorRGB = imagecolorsforindex($im, $c);
$gray = $currentColorRGB['red'];//图像为灰度图像,因此红色、绿色和蓝色
//应该相等。我们使用此数字作为 aColor 的键
imagecolorset($im,$c,(int)$aColor[$gray]['r'], (int)$aColor[$gray]['g'], (int)$aColor[$gray]['b']);
}
}
?>
olivier at moostik dot net
23 年前
此函数更改图像的颜色,每个主颜色范围为 0>100。

int ImageSelectiveColor (int im, int red, int green, int blue)

im 是图像指针。
red、green 和 blue 的范围为 0->100。

function ImageSelectiveColor($im,$red,$green,$blue)
{
for($i=0;$i<imagecolorstotal($im);$i++)
{
$col=ImageColorsForIndex($im,$i);
$red_set=$red/100*$col['red'];
$green_set=$green/100*$col['green'];
$blue_set=$blue/100*$col['blue'];
if($red_set>255)$red_set=255;
if($green_set>255)$green_set=255;
if($blue_set>255)$blue_set=255;
imagecolorset($im,$i,$red_set,$green_set,$blue_set);

}
return $im;

}
admin at phpgfx dot com
17 年前
这是一个将图像转换为纯黑白的函数。

<?php

function imagepurebw( $img, $amount = 383 ) {
$total = imagecolorstotal( $img );
for (
$i = 0; $i < $total; $i++ ) {
$index = imagecolorsforindex( $img, $i );
array_pop( $index );
$color = ( array_sum( $index ) > $amount ) ? 255 : 0;
imagecolorset( $img, $i, $color, $color, $color );
}
}

?>
info at devking dot com
22 年前
这是一个将图像转换为灰度的简单函数…

function imagecolorgrey( &$img ) {
for( $i=0; $i<imagecolorstotal( $img ); $i++ ) {
$c = ImageColorsForIndex( $img, $i );
$t = ($c["red"]+$c["green"]+$c["blue"])/3;
imagecolorset( $img, $i, $t, $t, $t );
}
}
To Top