CaptchaController.php 2.6 KB

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