php 图片 变灰色,php[图片变灰]生成灰色图片代码

header('Content-type: image/jpeg');

$source_file = isset($_REQUEST['path']) ? $_REQUEST['path'] : "index_01.jpg";

$imgname='hui/'.$source_file;//所有灰色图片保存在"hui"文件夹中

//如果已经生成灰色图片直接输出

if(file_exists($imgname)){

$im = @imagecreatefromjpeg($imgname);

imagejpeg($im);

}else{

$im = ImageCreateFromJpeg($source_file);

$imgw = imagesx($im);

$imgh = imagesy($im);

for ($i=0; $i

{

for ($j=0; $j

{

// get the rgb value for current pixel

$rgb = ImageColorAt($im, $i, $j);

// extract each value for r, g, b

$rr = ($rgb >> 16 ) & 0xFF;

$gg = ($rgb >> 8 ) & 0xFF;

$bb = $rgb & 0xFF;

// get the Value from the RGB value

$g = round(($rr + $gg + $bb) / 3);

// grayscale values have r=g=b=g

$val = imagecolorallocate($im, $g, $g, $g);

// set the gray value

imagesetpixel ($im, $i, $j, $val);

}

}

imagejpeg($im,$imgname);//生成灰色图片

$im = @imagecreatefromjpeg($imgname);//读取生成的灰色图片

imagejpeg($im);

}

?>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值