captcha.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. return [
  3. 'default' => [
  4. 'length' => 4,
  5. 'width' => 120,
  6. 'height' => 46,
  7. 'quality' => 90,
  8. 'lines' => 6,
  9. 'bgImage' => false,
  10. 'bgColor' => '#ecf2f4',
  11. 'fontColors'=> ['#2c3e50', '#c0392b', '#16a085', '#c0392b', '#8e44ad', '#303f9f', '#f57c00', '#795548'],
  12. 'contrast' => -5,
  13. ],
  14. 'flat' => [
  15. 'length' => 6,
  16. 'width' => 160,
  17. 'height' => 46,
  18. 'quality' => 90,
  19. 'lines' => 6,
  20. 'bgImage' => false,
  21. 'bgColor' => '#ecf2f4',
  22. 'fontColors'=> ['#2c3e50', '#c0392b', '#16a085', '#c0392b', '#8e44ad', '#303f9f', '#f57c00', '#795548'],
  23. 'contrast' => -5,
  24. ],
  25. 'mini' => [
  26. 'quality' => 60,
  27. 'length' => 4,
  28. 'width' => 108,
  29. 'height' => 48,
  30. 'fontColors'=> ['#2c3e50', '#c0392b', '#16a085', '#c0392b', '#8e44ad', '#303f9f', '#f57c00', '#795548'],
  31. ],
  32. 'inverse' => [
  33. 'length' => 5,
  34. 'width' => 120,
  35. 'height' => 36,
  36. 'quality' => 90,
  37. 'sensitive' => true,
  38. 'angle' => 12,
  39. 'sharpen' => 10,
  40. 'blur' => 2,
  41. 'invert' => true,
  42. 'contrast' => -5,
  43. ]
  44. ];