您好,欢迎访问一九零五行业门户网

验证码显示不了,?求大神

font = root_path.'/font/elephant.ttf';
    }
//生成随机码
    private function createcode() {
        $_len = strlen($this->charset)-1;
        for ($i=0;$icodelen;$i++) {
            $this->code .= $this->charset[mt_rand(0,$_len)];
        }
    }
//生成背景
    private function createbg() {
        $this->img = imagecreatetruecolor($this->width, $this->height);
        $color = imagecolorallocate($this->img, mt_rand(157,255), mt_rand(157,255), mt_rand(157,255));
        imagefilledrectangle($this->img,0,$this->height,$this->width,0,$color);
    }
//生成文字
    private function createfont() {    
        $_x = $this->width / $this->codelen;
        for ($i=0;$icodelen;$i++) {
            $this->fontcolor = imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));
            imagettftext($this->img,$this->fontsize,mt_rand(-30,30),$_x*$i+mt_rand(1,5),$this->height / 1.4,$this->fontcolor,$this->font,$this->code[$i]);
        }
    }
//生成线条、雪花
    private function createline() {
        for ($i=0;$i             $color = imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));
            imageline($this->img,mt_rand(0,$this->width),mt_rand(0,$this->height),mt_rand(0,$this->width),mt_rand(0,$this->height),$color);
        }
        for ($i=0;$i             $color = imagecolorallocate($this->img,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));
            imagestring($this->img,mt_rand(1,5),mt_rand(0,$this->width),mt_rand(0,$this->height),'*',$color);
        }
    }
//输出
    private function output() {
        header('content-type:image/png');
        imagepng($this->img);
        imagedestroy($this->img);
    }
//对外生成
    public function doimg() {
        $this->createbg();
        $this->createcode();
        $this->createline();
        $this->createfont();
        $this->output();
    }
//获取验证码
    public function getcode() {
        return strtolower($this->code);
    }
}
?>
单独建一个文件显示是正常的,放到mvc模式下的方法中显示图片就xx了。
正常的:
doimg();
$_session['code'] = $_vc->getcode();//验证码保存到session中
?>
显示x的:
smarty->display( 'login.html' );
}
public function verifi(){
$_vc = new validatecode(); //实例化一个对象
$_vc->doimg();
//$_session['code'] = $_vc->getcode();//验证码保存到session中
}
}
?>
回复讨论(解决方案) 代码一样的话,检查一下bom头。
代码一样的话,检查一下bom头。
检查过了,没bom
代码一样的话,检查一下bom头。
检查过了,没bom
不要直接输出图片,检查是否有错误。header()那一部分先注释掉,看报错。
其它类似信息

推荐信息