我正在创建验证码,这是我创建验证码图像的脚本。
header("Content-type: image/png");
$width = 100;
$height = 40;
$im = ImageCreate($width, $height);
$bg = ImageColorAllocate($im, 250, 250, 250);
$border = ImageColorAllocate($im, 191, 191, 191);
ImageRectangle($im, 0, 0, $width - 1, $height - 1, $border);
$text = base64_decode($GLOBALS["captcha_akey"]);
$textcolor = ImageColorAllocate($im,0,5,5);
$font = 3;
$font_width = ImageFontWidth($font);
$font_height = ImageFontHeight($font);
$text_width = $font_width * strlen($text);
$position_center = ceil(($width - $text_width) / 2);
$text_height = $font_height;
$position_middle = ceil(($height - $text_height) / 2);
ImageString($im, $font, $position_center, $position_middle, $text, $textcolor);
ImagePNG($im);
验证码正确显示但在验证码的顶部我发现了这个错误。
�PNG IHDRd(u�� PLTE������IDAT8�퓻 �0DU�M�R�Y"�*=���)C)T�"��pXH���$����|�˟�$�9N����$獌�@�54�i[ -Hi\ku7��&Y���АLA�h;�Ah�^u�*���5 I:;���\�pd;��;ߓ�6b�(���'P�SY���IEND�B`�
答案 0 :(得分:0)
看起来您的标题(标题(“Content-type:image / png”);)已在html内容中发送。所有标题必须先输出。
答案 1 :(得分:0)
我通过启用php.ini
中的gd扩展来实现它取消注释php.ini文件中的这一行:extension=php_gd2.dll
(删除前导;)
找到你的php.ini文件,创建以下文件并上传到服务器并在浏览器中运行。
<?php
phpinfo();
?>
它会显示一条线, 配置文件(php.ini)路径/ usr / local / lib 和 加载的配置文件/usr/local/lib/php.ini