bmpcode.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?php
  2. session_start();
  3. class CaptchaGenerator {
  4. // 配置参数
  5. private $config = [
  6. 'width' => 120, // 图片宽度
  7. 'height' => 40, // 图片高度
  8. 'charLength' => 5, // 验证码长度
  9. 'charSet' => '0123456789', // 字符集
  10. 'fontSize' => 20, // 字体大小
  11. 'noiseDots' => 50, // 噪点数量
  12. 'noiseLines' => 3, // 干扰线数量
  13. 'sessionKey' => 'zengscode' // Session存储键
  14. ];
  15. private $image;
  16. private $code;
  17. public function __construct($customConfig = []) {
  18. $this->config = array_merge($this->config, $customConfig);
  19. if (isset($_GET['width']) && is_numeric($_GET['width'])) {
  20. $this->config['width'] = (int)$_GET['width'];
  21. }
  22. if (isset($_GET['height']) && is_numeric($_GET['height'])) {
  23. $this->config['height'] = (int)$_GET['height'];
  24. }
  25. }
  26. private function generateCode() {
  27. $chars = str_split($this->config['charSet']);
  28. $this->code = '';
  29. for ($i = 0; $i < $this->config['charLength']; $i++) {
  30. $this->code .= $chars[array_rand($chars)];
  31. }
  32. $_SESSION[$this->config['sessionKey']] = $this->code;
  33. }
  34. private function createImage() {
  35. $this->image = imagecreatetruecolor($this->config['width'], $this->config['height']);
  36. $bgColor = imagecolorallocate($this->image, 255, 255, 255);
  37. imagefill($this->image, 0, 0, $bgColor);
  38. }
  39. private function addCharacters() {
  40. $charSpacing = $this->config['width'] / ($this->config['charLength'] + 1);
  41. // 调整垂直基线,使文字居中且完整显示
  42. $baseY = $this->config['height'] - ($this->config['fontSize'] / 2); // 从底部开始计算
  43. for ($i = 0; $i < strlen($this->code); $i++) {
  44. $textColor = imagecolorallocate($this->image,
  45. rand(0, 150), rand(0, 150), rand(0, 150)
  46. );
  47. $angle = rand(-20, 20);
  48. // 水平位置
  49. $x = ($i + 1) * $charSpacing - ($this->config['fontSize'] / 2) + rand(-5, 5);
  50. // 垂直位置调整,确保文字完整显示并居中
  51. $y = $baseY + rand(-5, 5);
  52. // 使用内置字体5,位置从左下角计算
  53. imagestring($this->image, 5, $x, $y - $this->config['fontSize'], $this->code[$i], $textColor);
  54. }
  55. }
  56. private function addNoiseDots() {
  57. for ($i = 0; $i < $this->config['noiseDots']; $i++) {
  58. $color = imagecolorallocate($this->image,
  59. rand(0, 255), rand(0, 255), rand(0, 255)
  60. );
  61. imagesetpixel($this->image,
  62. rand(0, $this->config['width']),
  63. rand(0, $this->config['height']),
  64. $color
  65. );
  66. }
  67. }
  68. private function addNoiseLines() {
  69. for ($i = 0; $i < $this->config['noiseLines']; $i++) {
  70. $color = imagecolorallocate($this->image,
  71. rand(0, 255), rand(0, 255), rand(0, 255)
  72. );
  73. imageline($this->image,
  74. rand(0, $this->config['width']), rand(0, $this->config['height']),
  75. rand(0, $this->config['width']), rand(0, $this->config['height']),
  76. $color
  77. );
  78. }
  79. }
  80. public function generate() {
  81. $this->generateCode();
  82. $this->createImage();
  83. $this->addCharacters();
  84. $this->addNoiseDots();
  85. $this->addNoiseLines();
  86. header('Content-Type: image/png');
  87. imagepng($this->image);
  88. imagedestroy($this->image);
  89. }
  90. public function getCode() {
  91. return $this->code;
  92. }
  93. public static function verify($input, $sessionKey = 'captcha_code') {
  94. return isset($_SESSION[$sessionKey]) &&
  95. strtolower($input) === strtolower($_SESSION[$sessionKey]);
  96. }
  97. }
  98. // 使用示例
  99. $captcha = new CaptchaGenerator();
  100. $captcha->generate();
  101. ?>