코드 복사 코드는 다음과 같습니다.
/**기본 홈페이지 **/
class DefaultController는 AppController를 확장합니다
{
public function index() {
$len = 5;
$str = "ABCDEFGHIJKLNMPQRSTUVWXYZ123456789"
$im = imagecreatetruecolor( 70, 20 ); >$bgc = imagecolorallocate($im, 255, 255, 255);
$bgtxt = imagecolorallocate($im, 220, 220, 220)
//임의 팔레트
$colors = array(
imagecolorallocate($im, 255, 0, 0),
imagecolorallocate($im, 0, 200, 0),
imagecolorallocate($im, 0, 0, 255),
imagecolorallocate($ im , 0, 0, 0),
imagecolorallocate($im, 255, 128, 0),
imagecolorallocate($im, 255, 208, 0),
imagecolorallocate($im, 98, 186 , 245),
);
//배경색 채우기
imagefill($im, 0, 0, $bgc)
//무작위로 숫자 가져오기
$verify = "" ;
while (strlen($verify) < $len) {
$i = strlen($verify)
$random = $str[rand(0, strlen($str))];
$verify .= $random;
//배경 텍스트 그리기
imagestring($im, 6, ($i*10) 3, rand(0,6), $random, $bgtxt);
//메인 텍스트 정보 그리기
imagestring($im, 6, ($i*10) 3, rand(0,6), $random, $colors[rand(0, count($colors) -1) ]);
//임의의 노이즈 추가
for($i=0; $i$color = imagecolorallocate($im, rand( 50,220) , rand(50,220), rand(50,220));
imagesetpixel($im, rand(0,70), rand(0,20), $color)
}
//변경 $_SESSION
sess("verify", $verify)에 저장
//이미지 출력 및 캐시 해제
header('Content-type: image/png'); >imagepng($im);
imagedestroy($im)
}
};
위에서는 도서관 관리 시스템 소스 코드의 내용을 포함하여 임의의 확인 코드 이미지 코드를 생성하는 도서관 관리 시스템 소스 코드 PHP를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.