Here’s the current code I am using.
<? header("Content-type: image/png");
// example: <img src="gradient.php?height=600&width=100&start=00FF00&end=ff0000" />
$height=100;
$width=1;
$start='000000';
$end='FFFFFF';
extract($_REQUEST); // overwrite using vars from url
$start_r = hexdec(substr($start,0,2));
$start_g = hexdec(substr($start,2,2));
$start_b = hexdec(substr($start,4,2));
$end_r = hexdec(substr($end,0,2));
$end_g = hexdec(substr($end,2,2));
$end_b = hexdec(substr($end,4,2));
$image = @imagecreate($width,$height);
for($y=0;$y<$height;$y++){
for($x=0;$x<$width;$x++){
if($start_r==$end_r) $new_r = $start_r;
$difference = $start_r-$end_r;
$new_r = $start_r-intval(($difference/$height)*$y);
if($start_g==$end_g) $new_g = $start_g;
$difference = $start_g-$end_g;
$new_g = $start_g-intval(($difference/$height)*$y);
if($start_b==$end_b) $new_b = $start_b;
$difference = $start_b - $end_b;
$new_b = $start_b-intval(($difference/$height)*$y);
$row_color = imagecolorresolve($image,$new_r,$new_g,$new_b);
imagesetpixel($image,$x,$y,$row_color);
}
}
imagepng($image);
imagedestroy($image);
?>
The above code works perfect in making vertical (top to bottom) gradients but I’d like to be able to make horizontal ones as well. I have a very good understanding for PHP, but I don’t deal with PHP image functions very often. If someone can help me and figure this out I’d really appreciate it!
This code will work for vertical gradient and make it faster as well.
I have commented out useless code so you know what to delete.