欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

图像因其本身有错无法显示

程序员文章站 2022-05-25 14:12:08
...
代码如下:

按照网上的方法加了ob_clean();
也将文档格式变为了utf-不带bom格式的
怎么还是出错呢?


回复讨论(解决方案)

ob_clean();header("Content-type:image/png");$im = @imagecreate(200, 100);@imagecolorallocate($im, 240, 150, 255);$color1 = imagecolorallocate($im, 0, 0, 0);imagestring($im, 5, 8, 10, "I like PHP", $color1);imagepng ( $im);//少了生成图片这个语句imagedestroy($im);

ob_clean();header("Content-type:image/png");$im = @imagecreate(200, 100);@imagecolorallocate($im, 240, 150, 255);$color1 = imagecolorallocate($im, 0, 0, 0);imagestring($im, 5, 8, 10, "I like PHP", $color1);imagepng ( $im);//少了生成图片这个语句imagedestroy($im);

哦,是这样的