> 백엔드 개발 > PHP 튜토리얼 > PHP图像输出问题,

PHP图像输出问题,

WBOY
풀어 주다: 2016-06-20 12:29:16
원래의
866명이 탐색했습니다.

代码如下,

//第一步 设置MIME类型,输出格式
header("Content-Type:image/png;");
for ($i=0;$i {
   $nmsg.=dechex(mt_rand(0,15));
}
echo  $nmsg;
//第二步 创建空白区域
    $im=imagecreatetruecolor(200,200);
    //第三步 创建imagecolorallocate为图像填充颜色
    $blue=imagecolorallocate($im,0,102,255);
    //第四步 将蓝色填充为背景
    imagefill($im,0,0,$blue);
//第五步 填充文字
$white=imagecolorallocate($im,255,255,255);
imagestring($im,5,80,80,$nmsg,$white);
//第六步 首先输出看一下效果
imagepng($im);
    //销毁,保持内存
    imagedestroy($im);
?>


回复讨论(解决方案)



错误是这样的

主要就是FOR循环那有问题,我输出一个验证码,把 $nmsg.=dechex(mt_rand(0,15));中的.去掉,它会显示一位验证码,加上就报错了

for循环之前声明$nmsg变量:

$nmsg = "";
로그인 후 복사

/第一步 设置MIME类型,输出格式
header("Content-Type:image/png;");
$nmsg = '';
for ($i=0;$i<4;$i++)
{
$nmsg.=dechex(mt_rand(0,15));
}
//echo $nmsg;


这样就可以了。

<?php//第一步 设置MIME类型,输出格式$nmsg = '';header("Content-Type:image/png;");for ($i=0;$i<4;$i++){   $nmsg.=dechex(mt_rand(0,15));}//echo  $nmsg;//第二步 创建空白区域    $im=imagecreatetruecolor(200,200);    //第三步 创建imagecolorallocate为图像填充颜色    $blue=imagecolorallocate($im,0,102,255);    //第四步 将蓝色填充为背景    imagefill($im,0,0,$blue);//第五步 填充文字$white=imagecolorallocate($im,255,255,255);imagestring($im,5,80,80,$nmsg,$white);//第六步 首先输出看一下效果imagepng($im);    //销毁,保持内存    imagedestroy($im);?>
로그인 후 복사

谢谢各位大神!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿