Hallo,
die Farbe für die Schrift kannst du nur im Quelltext ändern:
include/captcha/captchas/ttf_image.phpund zwar an zwei Stellen:
// draw each character individualy
$image = ImageCreateFromPNG($bg); // background image
$grey = mt_rand(0,50);
$color = ImageColorAllocate($image, $grey, $grey, $grey); // font-color
und
// draw whole string at once
$image_failed = true;
$count=0;
do {
$image = ImageCreateFromPNG($bg); // background image
$grey = mt_rand(0,50);
$color = ImageColorAllocate($image, $grey, $grey, $grey); // font-color
http://de3.php.net/ImageColorAllocateEDIT: alternativ kannst du natürlich auch hellere Hintergründe für die Catpchas selber erzeugen (oder die von wb2.8 benutzen). Siehe auch
CAPTCHAS individuell anpassen.
thorn.