码迷,mamicode.com
首页 > Web开发 > 详细

使用PHP GD库绘制图像,不显示的问题

时间:2017-05-01 12:57:49      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:function   关闭   style   判断   oca   blog   hit   绘制图像   安装   

1. 使用PHP中的GD库绘制图像,之后浏览器无法显示,GD库安装,配置也没什么错误,提示图像因本身有错无法显示,于是就在header() 前面使用ob_clean();然后使用浏览器就能正常的浏览了

 1 <?php
 2 $height = 300;
 3 $width = 300;
 4 $im = imagecreatetruecolor($width, $height);
 5 $white = imagecolorallocate ($im, 255, 255, 255);
 6 $blue = imagecolorallocate ($im, 0, 0, 64);
 7 imagefill($im, 0, 0, $blue);
 8 imagestring($im, 10, 100, 120, ‘Hello,PHP‘, $white);
 9 ob_clean();
10 header (‘Content-type: image/png‘);
11 imagepng($im);imagedestroy($im);
12 ?>

ob_get_contents() - 返回输出缓冲区的内容

ob_flush() - 冲刷出(送出)输出缓冲区中的内容

ob_clean() - 清空(擦掉)输出缓冲区

ob_end_flush() - 冲刷出(送出)输出缓冲区内容并关闭缓冲

ob_end_clean() - 清空(擦除)缓冲区并关闭输出缓冲

flush() - 刷新输出缓冲

 

2. 判断GD库是否安装

使用函数fnction_exists()

1 if(function_exists(‘imagecreate‘)){
2 
3    echo"已成功安装";
4 
5 }

 

使用PHP GD库绘制图像,不显示的问题

标签:function   关闭   style   判断   oca   blog   hit   绘制图像   安装   

原文地址:http://www.cnblogs.com/fujin/p/6791656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!