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 }
时间: 2024-11-04 15:43:00