I am trying to adjust the color of the font for the text input on this signature of the current mp3 file playing on my internet radio station.
The script is working; I just need to change the color of the font from default black.
/////////////////////////////////////////////
<?php
include("includes.php");
header("Content-Type: image/png");
$im = imagecreatefrompng("songband1.png");
if ($im)
{
ImageString($im, 4, 15, 10, "Now Spinning: ".$current_song, 2);
//ImageString($im, 1, 17, 17, "There are ".$listeners, 2);
ImagePNG($im);
}
?>
/////////////////////////////////////////////////
any help would be amazing

Drew