>  기사  >  백엔드 개발  >  PHP가 이미지를 생성할 수 없으면 어떻게 해야 할까요?

PHP가 이미지를 생성할 수 없으면 어떻게 해야 할까요?

藏色散人
藏色散人원래의
2021-06-02 15:34:042834검색

PHP가 이미지를 생성할 수 없는 문제에 대한 해결책: 1. gd2 라이브러리를 엽니다. 2. 이미지를 생성하기 전에 모든 출력을 삭제합니다. 3. "ob_clean();"을 통해 출력 캐시를 지웁니다.

PHP가 이미지를 생성할 수 없으면 어떻게 해야 할까요?

이 기사의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터

PHP에서 이미지를 생성할 수 없으면 어떻게 해야 합니까? PHP 인증 코드가 이미지를 생성할 수 없는 이유가 해결되었습니다

이미지 생성 시 header('Content-type: image/png'); 가 앞에 출력될 수 없습니다! ! !

또는 추가: ob_clean(); 출력을 사용하더라도 이 문장을 통해 출력 캐시를 지울 수 있습니다! 매우 중요합니다! ! !

물론, 먼저 phpinfo를 통해 볼 수 있는 gd2 라이브러리를 열어야 합니다. BOM을 클리어한 후 코드도 맨 윗줄부터 작성하기 때문에 코드에 문제가 발생할 수 있습니다. 약간의 조사 끝에 프로그램을 변경하고 헤더 앞에 ob_clean() 문을 추가해야 실행될 수 있다는 사실을 발견했습니다! 하하, 프로그램을 코딩하고 디버깅하는 것은 의사가 되는 것과 같습니다. 연습을 하면 강해질 것입니다.

<?php
//设置 验证码高度宽度\上面字符个数
$img_w = 70;
$img_h = 22;
$font = 5;
$char_len = 5;
//数组合并, range()函数返回一个范围数组
$char = array_merge ( range ( &#39;a&#39;, &#39;z&#39; ), range ( &#39;A&#39;, &#39;Z&#39; ), range ( &#39;1&#39;, &#39;9&#39; ) );
$rand_keys = array_rand ( $char, $char_len ); //随机从数组中取指定个数的元素,生成键值
if ($char_len == 1) { //若只有一个数,则array_rand()返回非数组类型
         $rand_keys = array ($rand_keys );
}
shuffle($rand_keys);  //可以不用
$code = &#39;&#39;;
foreach ( $rand_keys as $k ) {
         $code .= $char [$k];
}
session_start ();
$_SESSION [&#39;captcha&#39;] = $code;
 
//添加线、色
//创建新图像
$img = imagecreatetruecolor ( $img_w, $img_h );
//分配颜色
$bg_color = imagecolorallocate ( $img, 0xcc, 0xcc, 0xcc );
//画布背景色
imagefill ( $img, 0, 0, $bg_color );
//干扰线
for($i = 0; $i < 300; ++$i) {
         $color = imagecolorallocate ( $img, mt_rand ( 0, 255 ), mt_rand ( 0, 255 ), mt_rand ( 0, 255 ) );
         imagesetpixel ( $img, mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), $color );
}
for($i = 0; $i <= 10; ++ $i) {
         //设置直线颜色
         $color = imageColorAllocate ( $img, mt_rand ( 0, 255 ), mt_rand ( 0, 255 ), mt_rand ( 0, 255 ) );
         //在$img图像上随机画一条直线
         imageline ( $img, mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), $color );
         //imagesetpixel($img,mt_rand(0,$img_w),mt_rand(0,$img_h),$color);
}
 
//加加框
$rect_color = imagecolorallocate ( $img, 0x90, 0x90, 0x90 );
imagerectangle ( $img, 0, 0, $img_w - 1, $img_h - 1, $rect_color );
$str_color = imagecolorallocate ( $img, mt_rand ( 0, 100 ), mt_rand ( 0, 100 ), mt_rand ( 0, 100 ) );
$font_w = imagefontwidth ( $font );
$font_h = imagefontheight ( $font );
$str_len = $font_w * $char_len;
imagestring ( $img, $font, ($img_w - $str_len) / 2, ($img_h - $font_h) / 2, $code, $str_color );

문자열 색상 설정

$str_color = imageColorAllocate($img, mt_rand(0, 100), mt_rand(0, 100),mt_rand(0, 100));
//设定字符串位置
$font_w = imageFontWidth($font);  //字体宽
$font_h = imageFontHeight($font); //字体高
$str_w = $font_w * $char_len;     //字符串宽
imageString($img, $font, ($img_w-$str_w)/2, ($img_h-$font_h)/2, $code, $str_color);
echo &#39;ddd&#39;; //输出影响生成图片,查找了大半天的原因终于找到了
ob_clean(); //也可以加上这句,这样前面有输出,清除输出缓存
//生成图片
header ( &#39;Content-Type: image/png&#39; );//header前不能加任何输出或加ob_clean()清除
imagepng($img);
//----4 销毁画布
imagedestroy($img);

추천 학습: "PHP 비디오 튜토리얼"

위 내용은 PHP가 이미지를 생성할 수 없으면 어떻게 해야 할까요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.