hi, i been using this script for long on my site and it's for showing what are u playing on ur winamp and it displays on little jpg Image and. this si the code.
<?php
function inkort($txt, $length) { if(strlen($txt) > $length) { $txt = substr($txt, 0, $length)."..."; } return $txt; }
$content = $_GET[song];
if($content) {
$liedje = stripslashes(inkort($content, 30));
header("Content-type: image/JPEG");
$plaatje = ImageCreateFromJPEG("sig1xc.jpg");
$white = Imagecolorallocate($plaatje, 255, 255, 255);
$zwart = ImageColorAllocate($plaatje, 0, 0, 0);
imagestring($plaatje, 3, 70, 6, $liedje, $zwart);
ImageJPEG($plaatje, "winamp.jpeg", 100);
ImageDestroy($plaatje);
}
?>
when it displays on it displays as Black Text and i want to Chage the Color To White so it Displays as a White Text here is EX:

Hoply i did't confuse any one sorry i have a poor English. hope some one Can Help me out thx.