加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

php – 改变Zend图像Captcha风格

发布时间:2020-12-13 16:11:45 所属栏目:PHP教程 来源:网络整理
导读:我有Zend形式的图像验证码 $captcha = new Zend_Form_Element_Captcha('captcha',array('captcha' = array( 'captcha' = 'Image','label' = 'Rasmdagi belgilarni kiriting','required' = true,'wordLen' = 5,'width' = 150,'height' = 40,'timeout' = 300,'
我有Zend形式的图像验证码

$captcha = new Zend_Form_Element_Captcha('captcha',array('captcha' => array(
    'captcha'   => 'Image','label'     => 'Rasmdagi belgilarni kiriting','required'  => true,'wordLen'   => 5,'width'     => 150,'height'    => 40,'timeout'   => 300,'fontSize'  => 32,'gcFreq'    => 5,'font'      => 'files/captcha/fonts/4.ttf','imgDir'    => 'files/captcha/image','imgUrl'    => '/files/captcha/image',)));
$captcha->setIgnore(true);

我必须改变它的风格(背景).

解决方法

我相信你无法改变验证码图像的背景.它被硬编码到Zend_Captcha_Image中.您必须创建自己的验证码图像类,例如My_Captcha_Image通过扩展Zend_Captcha_Image并修改线条/线条图像的设置背景.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读