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

php验证码图片无法显示

validatecode.class.php代码如下
font = dirname(__file__).'/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);
 }
}
captcha.php代码如下
doimg();  
$_session['authnum_session'] = $_vc->getcode();//验证码保存到session中
index.php代码如下
session 图片验证实例
此例为session验证实例
验证码:
新手求大神解答
回复讨论(解决方案) 运行后的图片
单独运行 captcha.php 看看
1、确保 captcha.php 无 bom 头
2、确认字体文件真实存在
我前2天刚好也看到过这个code代码,调试过。。应该是字体路径问题
'/font/elephant.ttf
弄好了,validatecode.class.php和captcha.php同时改为无bom头,字体文件也要注意
上图
不过了又发现一个问题, .不想再开个帖子了,麻烦哪位大神看看
其它类似信息

推荐信息