PHP開發驗證碼教學實作數位驗證碼
實作數位驗證碼
<?php $image = imagecreatetruecolor(100,30); $bgcolor = imagecolorallocate($image,255,255,255);//#FFFFFFFFFFFF imagefill($image,0,0,$bgcolor); for ($i=0;$i<4;$i++){ $fontsize = 6; $fontcolor = imagecolorallocate($image,rand(0,120),rand(0,120),rand(0,120)); $fontcontent = rand(0,9); $x = ($i * 100/4)+rand(5,10); $y = rand(5,10); imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor); } header('content-type: image/png'); imagepng($image); //销毁 imagedestroy($image); ?>
for ($i=0;$i<4;$i++){ //循环出四个数字 $fontsize = 6;//字体的大小为6 $fontcolor = imagecolorallocate($image,rand(0,120),rand(0,120),rand(0,120)); //定义字体的颜色 $fontcontent = rand(0,9);//定义字体的取值范围 }$x = ($i * 100/4)+rand(5,10); $y = rand(5,10); 在范围内随机定义坐标 imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor); }
imagestring() 用 col 色彩將字串 s 畫到 image 所代表的影像的 x, y 座標處(這是字串左上角座標,整個影像的左上角為0,0)。如果font 是 1,2,3,4 或 5,則使用內建字體。
注意:控制好字體的大小和分佈,避免字體的重疊和顯示不全