doumen5895 2011-08-09 19:22
浏览 29
已采纳

Zend验证码图像生成空白

The image captcha randomly displays a blank captch. Roughly 4 out of 10 attempts.

I have already discovered the problem and a post on the zend forum suggest the only fix is to edit the Zend Framework code.

Is there any way to fix this without editing the ZF code? How come Zend have not fixed this in the releases since then, I have a look in the change log but nothing related to this?

$w     = $this->getWidth();
$h     = $this->getHeight();
$fsize = $this->getFontSize();

$img_file   = $this->getImgDir() . $id . $this->getSuffix();
if(empty($this->_startImage)) {
    $img = imagecreatetruecolor($w, $h);
} else {
    $img = imagecreatefrompng($this->_startImage);
    if(!$img) {
        require_once 'Zend/Captcha/Exception.php';
        throw new Zend_Captcha_Exception("Can not load start image");
    }
    $w = imagesx($img);
    $h = imagesy($img);
}
$text_color = imagecolorallocate($img, 0, 0, 0);
$bg_color   = imagecolorallocate($img, 255, 255, 255);
imagefilledrectangle($img, 0, 0, $w-1, $h-1, $bg_color);
$textbox = imageftbbox($fsize, 0, $font, $word);
$x = ($w - ($textbox[2] - $textbox[0])) / 2;
$y = ($h - ($textbox[7] - $textbox[1])) / 2;

// Edit: check not over 100
if($x > 50){ $x = 50;}
if($y > 100){ $y = 100;}

imagefttext($img, $fsize, 0, $x, $y, $text_color, $font, $word);

Debugging with a die() proves this is the case:

die("img=".$img ." fsize=".$fsize. " x=".$x ." y=".$y . " h=".$h );
img=Resource id #159 fsize=24 x=1073741923.5 y=41 h=50
  • 写回答

2条回答 默认 最新

  • dqjo4340 2011-08-09 19:35
    关注

    According to the link provided, it may not be a Zend Framework bug, but something with imageftbbox. I would suggest extending Zend_Captcha_Image and copying the _generateImage function and setting $x = to something reasonable ( I saw 45 on the forum post ) when it is too big ( perhaps > 100 ). This allows you to put in the suggested fix / hack without changing the actual Zend Framework code.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线