我用php写了一个验证吗。可是背景颜色始终黑色的哇,我吧我的代码贴上帮帮忙哪里改下改成绿色的背景
function show(){
$word=array("光棍","快乐","爱你","小树","我的","想起");
$name=$word[rand(0,5)];
$im=imagecreatetruecolor(62,20);
$black=imagecolorallocate($im,rand(20,100),rand(20,100),rand(20,100));
$white=imagecolorallocate($im,255,255,255);
$str=iconv("gbk","utf-8",$name);
imagettftext($im,14,1,15,17,$white,'simkai.ttf',$str);
for($i=0;$i<200;$i++)
{
$randcolor = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255));
imagesetpixel($im, rand()%70 , rand()%30 , $randcolor);}
header("content-type: image/jpeg");
imagejpeg($im);
}
