php 生成验证码图片不显示问题

今天在做一个php验证码程序时发现生成出来的图片不显示,开始以为是php gd库未打开,查用phpinfo查了是可以打开的啊,下面小编来给大家介绍此问题解决办法。

清除了bom,代码也是顶行开始写的,gd库也是开启的,从这里来看估计不是gd库的问题了,可能出在程序那句代码上。

生成验证码的代码:

  1. <?php
  2. /*
  3. * 验证码产生程序
  4. */
  5. $letter = '';
  6. //获取随机数字
  7. for ($i=0; $i<2; $i++) {
  8. $letter .= chr(mt_rand(48,57));
  9. }
  10. //获取随机字母
  11. for ($i=0; $i<2; $i++) {
  12. $letter .= chr(mt_rand(65,90));
  13. }
  14. //重构字符顺序
  15. $strs = str_split($letter);
  16. shuffle ($strs);
  17. $rndstring = "";
  18. while (list ( , $str) = each ($strs)) {
  19. $rndstring .= $str;
  20. }
  21. //如果支持GD,则绘图
  22. if(function_exists("imagecreate"))
  23. {
  24. //向浏览器写入cookie
  25. setcookie("zjs_ckstr", md5( strtolower($rndstring) ), time()+300,'/');//验证码有效期5分钟
  26. $rndcodelen = strlen($rndstring);
  27. //图片大小
  28. $im = imagecreate(100,30);
  29. //$im = imagecreatefromgif("code.gif");
  30. //字体
  31. $font_type = dirname(dirname(__FILE__))."/data/font/AvantGardeBookBT.ttf";
  32. //背景颜色
  33. $backcolor = imagecolorallocate($im,255,255,255);
  34. //字体色
  35. //不支持 imagettftext
  36. $fontColor = ImageColorAllocate($im, 0,0,0);
  37. //支持 imagettftext
  38. $fontColor2 = ImageColorAllocate($im, 0,0,0);
  39. //阴影
  40. $fontColor1 = ImageColorAllocate($im, 255,255,25);
  41. //添加背景杂点
  42. $pixColor = imagecolorallocate($im, 199, 199, 199);//杂点颜色
  43. for($j=0; $j<1000; $j++){
  44. imagesetpixel($im, rand(0,100), rand(0,30), $pixColor);
  45. }
  46. //添加背景线
  47. for($j=0; $j<=3; $j++){
  48. //背景线颜色
  49. $lineColor1 = ImageColorAllocate($im, rand(0, 255),rand(0, 255),rand(0, 255));
  50. //背景线方向大小
  51. imageline($im,rand(0,40),rand(3,25),rand(40,88),rand(3,25),$lineColor1);
  52. }
  53. $strposs = array();
  54. //文字
  55. for($i=0;$i<$rndcodelen;$i++){
  56. if(function_exists("imagettftext")){
  57. $strposs[$i][0] = $i*16+17;//x轴
  58. $strposs[$i][1] = mt_rand(20,23);//y轴
  59. imagettftext($im, 5, 5, $strposs[$i][0]+1, $strposs[$i][1]+1, $fontColor1, $font_type, $rndstring[$i]);
  60. } else{
  61. imagestring($im, 5, $i*16+7, mt_rand(2, 4), $rndstring[$i], $fontColor);
  62. }
  63. }
  64. //文字
  65. for($i=0;$i<$rndcodelen;$i++){
  66. if(function_exists("imagettftext")){
  67. imagettftext($im, 16,5, $strposs[$i][0]-1, $strposs[$i][1]-1, $fontColor2, $font_type, $rndstring[$i]);
  68. }
  69. }
  70. header("Pragma:no-cachern");
  71. header("Cache-Control:no-cachern");
  72. header("Expires:0rn");
  73. //输出特定类型的图片格式,优先级为 gif -> jpg
  74. if(function_exists("imagegif")){
  75. header("content-type:image/gifrn");
  76. imagegif($im);
  77. }else{
  78. header("content-type:image/jpegrn");
  79. imagejpeg($im);
  80. }
  81. ImageDestroy($im);
  82. }
  83. ?>

感觉是不是没有问题了,后来百度发现一高人说关键是加入了ob_clean,了这个让我想了原因。

解决办法:ob_clean();关键代码,防止出现'图像因其本身有错无法显示'的问题,加到 header 输出之前,代码如下:header('Content-Type: image/png');