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条)

报告相同问题?

悬赏问题

  • ¥20 java在应用程序里获取不到扬声器设备
  • ¥15 echarts动画效果的问题,请帮我添加一个动画。不要机器人回答。
  • ¥60 许可证msc licensing软件报错显示已有相同版本软件,但是下一步显示无法读取日志目录。
  • ¥15 Attention is all you need 的代码运行
  • ¥15 一个服务器已经有一个系统了如果用usb再装一个系统,原来的系统会被覆盖掉吗
  • ¥15 使用esm_msa1_t12_100M_UR50S蛋白质语言模型进行零样本预测时,终端显示出了sequence handled的进度条,但是并不出结果就自动终止回到命令提示行了是怎么回事:
  • ¥15 前置放大电路与功率放大电路相连放大倍数出现问题
  • ¥30 关于<main>标签页面跳转的问题
  • ¥80 部署运行web自动化项目
  • ¥15 腾讯云如何建立同一个项目中物模型之间的联系