I understood that codeigniter-2 by default can generate captcha in alphanumeric type only. How I can extend it to generate as a meaningful word ?
For example:
- morning
- overlooking
- etc.
Sample of code that generate the captcha:
$vals = array(
                'img_path'      => './assets/captcha/',
                'img_url'       => 'http://url/assets/captcha/',
                'img_width'     => '130',
                'font_path'     => './assets/fonts/Moms_typewriter.ttf',
                'img_height'    => '33',
                'expiration'    => CAPTCHA_MAX_TIME_EXPIRATION
                );
$cap = create_captcha($vals);
 
    