我正在使用 Zend_Form_Element_Captcha 创建验证码图像,如下所示:-
$captcha = new Zend_Form_Element_Captcha(
'captcha',
array(
'label' => 'Please write the characters you see in the image:',
'captcha' => array(
'captcha' => 'Image',
'wordLen' => 6,
'timeout' => 900,
'font' => '/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf',
)
)
);
$form = new Zend_Form();
$form->addElement($captcha);
这是在创建验证码图像,但方式不正确。字母根本不可读。 这就是我得到的...
我也试图改变字体,但最终还是一样。有什么建议么 ?