• 技术文章 >PHP >PHP教程

    php不能生成图片的解决办法

    小妮浅浅小妮浅浅2021-08-26 10:09:25原创13095

    解决办法

    1、打开gd2库,通过phpinfo进行查看。清除bom,代码是顶行开始写的,所以问题可能出现在代码上。

    2、在header前加上ob_clean()语句,随后就可以运行了。

    注意点

    生成图片时,header('Content-type: image/png');前面不能有输出。或者,前面加:ob_clean(); 即使用输出也可以通过这句来清除输出缓存。

    解决实例

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28

    29

    30

    31

    32

    33

    34

    35

    36

    37

    38

    39

    40

    41

    42

    43

    44

    45

    46

    47

    48

    49

    50

    51

    52

    53

    54

    55

    56

    57

    58

    59

    60

    61

    62

    63

    64

    65

    66

    67

    68

    69

    70

    71

    72

    73

    74

    75

    76

    77

    78

    79

    80

    81

    82

    83

    84

    85

    86

    87

    88

    89

    90

    91

    92

    93

    //设置 验证码高度宽度\上面字符个数

      

    $img_w = 70;

      

    $img_h = 22;

      

    $font = 5;

      

    $char_len = 5;

      

    //数组合并, range()函数返回一个范围数组

      

    $char = array_merge ( range ( 'a', 'z' ), range ( 'A', 'Z' ), range ( '1', '9' ) );

      

    $rand_keys = array_rand ( $char, $char_len ); //随机从数组中取指定个数的元素,生成键值

      

    if ($char_len == 1) { //若只有一个数,则array_rand()返回非数组类型

      

             $rand_keys = array ($rand_keys );

      

    }

      

    shuffle($rand_keys);  //可以不用

      

    $code = '';

      

    foreach ( $rand_keys as $k ) {

      

             $code .= $char [$k];

      

    }

      

    session_start ();

      

    $_SESSION ['captcha'] = $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 );

    以上就是php不能生成图片的解决办法,希望对大家有所帮助。更多php学习指路:php教程

    推荐操作系统:windows7系统、PHP5.6、DELL G3电脑

    专题推荐:php不能生成图片
    上一篇:php有哪些文件包含漏洞 下一篇:php正则替换函数的整理

    相关文章推荐

    • php框架有哪些• php数组函数有哪些• php数组转字符串• php上传文件代码• PHP中define定义常量的方法• PHP使用fread()操作字节• php常见运行模式详解• php中PDO库是什么• php PDO运行查询的方法• php PDO的预处理语句有哪些• php中PDO获取关联数组• php之phpstorm自动代码补全的使用• php中使用rand产生随机数• php构造方法__construct()是什么• php中Swoole的模块介绍• php命令行中进行断点• php方法断点如何实现• php中Suhosin是什么• php中如何配置Cookie加密• php Mhash算法的加密• php文件Hash如何使用• php增量Hash函数的使用• php中CGI模式的介绍• php FastCGI模式如何理解• php FastCGI模式的优缺点• php有哪些文件包含漏洞

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网