我尝试在需要从全色到透明的图像上渲染渐变,这是我的代码。我得到黑色图像,如果我开始超过 0,我得到白色渐变但没有图像。输出图像为 338x100 像素,但如果图像较窄,则输入图像需要右对齐。
function hex2rgb($hex) {
$rgb[0] = hexdec(substr($hex, 0, 2));
$rgb[1] = hexdec(substr($hex, 2, 2));
$rgb[2] = hexdec(substr($hex, 4, 2));
return $rgb;
}
function int2rgb($color) {
$result[] = ($color >> 16) & 0xFF;
$result[] = ($color >> 8) & 0xFF;
$result[] = $color & 0xFF;
return $result;
}
if (isset($_GET['start']) && isset($_GET['stop']) && isset($_GET['color'])) {
$input = imagecreatefrompng('file.png');
$width = imagesx($input);
$output = imagecreatetruecolor(338, 100);
$color = hex2rgb($_GET['color']);
$fill = imagecolorallocate($output, $color[0], $color[1], $color[2]);
for ($x=0; $x<$_GET['start']; ++$x) {
for ($y=0; $y<100; ++$y) {
imagesetpixel($output, $x, $y, $fill);
}
}
$range = $_GET['stop']-$_GET['start'];
for ($x=$_GET['start']; $x<$_GET['stop']; ++$x) {
$alpha = round(255-($x*255/$range));
$correct_x = $width < 338 ? $x+$width-338 : $x;
for ($y=0; $y<100; ++$y) {
$input_color = int2rgb(imagecolorat($input, $correct_x, $y));
$new_color = imagecolorallocate($output,
(($color[0]-$alpha)*$input_color[0])/255,
(($color[1]-$alpha)*$input_color[1])/255,
(($color[2]-$alpha)*$input_color[2])/255);
imagesetpixel($output, $x, $y, $new_color);
}
}
if ($_GET['stop']<338) {
$stop = $width < 338 ? $_GET['stop']+$width-338 : $_GET['stop'];
imagecopy($input, $output, $stop, 0, $_GET['stop'], 0, 338-$stop, 100);
header('Content-Type: image/png');
imagepng($output);
}
}
我运行脚本gradient.php?start=20&stop=200&color=ff0000
并得到它而不是红色渐变。
如何使渐变红色从全彩色变为全透明?所以它看起来像这样: