CaptchaController.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Support\Facades\Session;
  4. Class CaptchaController extends Controller
  5. {
  6. public function generate()
  7. {
  8. // 生成验证码字符串
  9. $characters = '23456789';
  10. $captchaString = '';
  11. for ($i = 0; $i < 6; $i++) {
  12. $captchaString .= $characters[rand(0, strlen($characters) - 1)];
  13. }
  14. // 创建图片
  15. $width = 120;
  16. $height = 40;
  17. $image = imagecreate($width, $height);
  18. // 定义颜色
  19. $backgroundColor = imagecolorallocate($image, 243, 243, 243); // 背景色(浅灰色)
  20. $textColor = imagecolorallocate($image, 51, 51, 51); // 文本颜色(深灰色)
  21. $lineColor = imagecolorallocate($image, 204, 204, 204); // 干扰线颜色(浅灰色)
  22. // 添加干扰线(每条线的颜色随机)
  23. for ($i = 0; $i < 5; $i++) {
  24. $lineColor = imagecolorallocate(
  25. $image,
  26. rand(0, 255), // 随机红色分量
  27. rand(0, 255), // 随机绿色分量
  28. rand(0, 255) // 随机蓝色分量
  29. );
  30. imageline(
  31. $image,
  32. rand(0, $width),
  33. rand(0, $height),
  34. rand(0, $width),
  35. rand(0, $height),
  36. $lineColor
  37. );
  38. }
  39. // 添加验证码文本
  40. $fontSize = 5; // 字体大小,GD 内置字体大小范围是 1 到 5
  41. $xOffset = 10; // 起始 X 偏移
  42. for ($i = 0; $i < strlen($captchaString); $i++) {
  43. $textColor = imagecolorallocate(
  44. $image,
  45. rand(0, 150), // 随机红色分量
  46. rand(0, 150), // 随机绿色分量
  47. rand(0, 150) // 随机蓝色分量
  48. );
  49. // 随机调整每个字符的位置
  50. $x = $xOffset + ($i * 15) + rand(-2, 2); // 每个字符的水平位置随机微调
  51. $y = rand(10, $height - imagefontheight($fontSize)); // 垂直位置随机
  52. imagestring(
  53. $image,
  54. $fontSize,
  55. $x,
  56. $y,
  57. $captchaString[$i],
  58. $textColor
  59. );
  60. }
  61. // 存储验证码文本到会话
  62. Session::put('captcha', $captchaString);
  63. // 输出图片
  64. ob_start();
  65. imagepng($image);
  66. $imageData = ob_get_clean();
  67. // 释放内存
  68. imagedestroy($image);
  69. return response($imageData)->header('Content-Type', 'image/png');
  70. }
  71. }