Home > Backend Development > PHP Tutorial > PHP 绘图:“图像错误,无法显示”

PHP 绘图:“图像错误,无法显示”

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 20:42:07
Original
1066 people have browsed it

这段 php 代码是我在本地文件 1.php 上写的,然后在 firefox 输出该图层,显示“图像错误,无法显示”。我以为是前几天由于其他编程设置的一个 cookie 的原因,我找到该 cookie 删掉了,但还是显示相同错误。然后我把代码复制到了同一目录下的 2.php,可以 firebox 上可以显示该图层。求大神指教一下,这到底是什么原因。

<code><?php header("content-type:image/jpeg"); 
//创建图层
$img=imagecreate(100,100);
//设置背景颜色
$bg=imagecolorallocate($img,0,0,0);
//输出图像
imagejpeg($img);
//关闭资源
imagedestroy($img);
</code></code>
Copy after login
Copy after login

回复内容:

这段 php 代码是我在本地文件 1.php 上写的,然后在 firefox 输出该图层,显示“图像错误,无法显示”。我以为是前几天由于其他编程设置的一个 cookie 的原因,我找到该 cookie 删掉了,但还是显示相同错误。然后我把代码复制到了同一目录下的 2.php,可以 firebox 上可以显示该图层。求大神指教一下,这到底是什么原因。

<code><?php header("content-type:image/jpeg"); 
//创建图层
$img=imagecreate(100,100);
//设置背景颜色
$bg=imagecolorallocate($img,0,0,0);
//输出图像
imagejpeg($img);
//关闭资源
imagedestroy($img);
</code></code>
Copy after login
Copy after login

跟文件命名没关系,按f5刷新试试

1 注释写在代码上面真是个折磨人的小妖精。

2 标题写清楚点。我要是声望够,也会去点那个向下的箭头。

3 涉及到图片修改的东西,一般要用C-F5强制刷新才行。

文件名也相关!PHP 绘图:“图像错误,无法显示”总感觉哪里不对。。。

同2楼,我要是声望够,也要去轻触一下哪个↓箭头

Related labels:
php
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template