gd库图像输出与echo有关问题

WBOY
Release: 2016-06-13 13:28:05
Original
820 people have browsed it

gd库图像输出与echo问题

  header("Content-type: image/png"); //通知浏览器将输出格式为PNG的图像
$im = imagecreatetruecolor(400, 30); //创建400x300像素大小的画布

$white = imagecolorallocate($im, 255, 255, 255); //创建白色
$grey = imagecolorallocate($im, 128, 128, 128); //创建灰色
$black = imagecolorallocate($im, 0, 0, 0); //创建黑色
imagefilledrectangle($im, 0, 0, 399, 29, $black); //输出一个使用白色填充的矩形作为背景

  //如果有中文输出,需要将其转码,转换为UTF-8的字符串才可以直接传递
$text=iconv("GB2312", "UTF-8", "LAMP兄弟连--无兄弟,不编程!");
$font = 'simsun.ttc'; //指定字体,将系统中与simsum.ttc对应的字体复制到当前目录下
  imagettftext($im, 20, 0, 12, 21, $grey, $font, $text); //输出一个灰色的字符串作为阴影
imagettftext($im, 20, 0, 10, 20, $black, $font, $text); //在阴影之上输出一个黑色的字符串


imagepng($im); //向浏览器中输出PNG格式的图像
imagedestroy($im); //销毁资源,释放内存占用的空间
  echo "aaaaaaaaaaaaaaa";

?>

上面的代码最后一行的echo语句输出不了,这是为什么啊?


------解决方案--------------------
输出了啊!不信你用二进制编辑软件打开产生的图片,保证在文件结尾处有 aaaaaaaaaaaaaaa

既然 header("Content-type: image/png"); //通知浏览器将输出格式为PNG的图像
那么那个 aaaaaaaaaaaaaaa 也就成了图片的一部分
------解决方案--------------------
两种不同的数据流不能同时输出
------解决方案--------------------
木有办法。你想输出一个图片,又想显示一段文字。做成html页面不就行了。里面图片的链接改成生成图片的链接
------解决方案--------------------
应该没有错

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template