$rgb = imagecolorat($im_org, $i, $j);
$rr = ($rgb >> 16) & 0xFF;
$gg = ($rgb >> 8) & 0xFF;
$bb = $rgb & 0xFF;
$g = round(($rr + $gg + $bb) / 3);
$val = imagecolorallocate($im_org, $g, $g, $g);
imagesetpixel ($im_org, $i, $j, $val);
这就是我对图片进行灰度化的方式,只需设置每个像素即可。但是,我想调整灰度输出的方式,比如我想添加更多的对比度和东西。我该怎么做?