Welcome Guest, Not a member yet? Register   Sign In
captcha open font error
#1

(This post was last modified: 04-24-2020, 09:10 AM by hafijul233.)

there is a problem when add font_path value.
With out "font_path" Everything went fine i need to increase font size and add bold character.
So I had Arial Bold Font.
working config
PHP Code:
$vals = [
            'img_path' => './captcha/',
            'img_url' => base_url('captcha/'),
            'img_width' => 260,
            'img_height' => 45,
            'expiration' => 900,
            'word_length' => 6,
            'font_size' => 20,
            'img_id' => 'Imageid',
            'pool' => 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',

            // White background and border, black text and red grid
            'colors' => array(
                'background' => array(255255255),
                'border' => array(255255255),
                'text' => array(000),
                'grid' => array(2554040)
            )
        ]; 
Are Fine
when I Had
PHP Code:
$vals = [
            'img_path' => './captcha/',
            'img_url' => base_url('captcha/'),
            'font_path' => './dist/fonts/arialbd.ttf'// font line from server
            'img_width' => 260,
            'img_height' => 45,
            'expiration' => 900,
            'word_length' => 6,
            'font_size' => 20,
            'img_id' => 'Imageid',
            'pool' => 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ',

            // White background and border, black text and red grid
            'colors' => array(
                'background' => array(255255255),
                'border' => array(255255255),
                'text' => array(000),
                'grid' => array(2554040)
            )
        ]; 
I got a error  that :
Severity: Warning
Message: imagettftext(): Could not find/open font
Filename: helpers/captcha_helper.php
Line Number: 272
Reply


Messages In This Thread
captcha open font error - by hafijul233 - 04-24-2020, 09:04 AM
RE: captcha open font error - by php_rocs - 04-24-2020, 10:11 AM
RE: captcha open font error - by hafijul233 - 04-24-2020, 11:58 AM
RE: captcha open font error - by php_rocs - 04-24-2020, 07:53 PM



Theme © iAndrew 2016 - Forum software by © MyBB