- <?php
- session_start();
-
- header("content-type:image/png");设置生成图片的格式这里为png
-
- $width=40;
-
- $height=25;
-
- $color="#ffffff";
-
- $num=rand(1000,9999);
-
- $_SESSION['ver']=$num;保存到session以前验证
-
- $img=imagecreate($width,$height);
-
- $bg1=imagecolorallocate($img,rand(0,100),rand(0,250),rand(0,255));
-
- $bg2=imagecolorallocate($img,rand(0,205),rand(0,250),rand(0,245));
-
-
-
-
-
- imagestring($img,7,4,7,$num,$bg2);
-
- imagepng($img);
-
- imagedestroy($img);
- ?>
|