captcha
captcha copied to clipboard
How to modify fonts?
How to modify fonts?
How to modify fonts?
follow
just put in the config/captcha.php file the key fonts. Example:
return [
'characters' => ['2', '3', '4', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'm', 'n', 'p', 'q', 'r', 't', 'u', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'J', 'M', 'N', 'P', 'Q', 'R', 'T', 'U', 'X', 'Y', 'Z'],
'default' => [
'length' => 4,
'width' => 120,
'height' => 36,
'quality' => 90,
'math' => false,
'lines' => 0,
'bgImage' => false,
'fonts' => [resource_path('fonts/times-new-roman.ttf')],
'fontColors' => ['#f08300', '#e3000f', '#a72878', '#064597']
],
];