内容说明:本函数用来建立一张 gif 格式图形,参数 im 为使用 imagecreate() 所建立的图片代码,参数 filename 可省略,若无本参数 filename,则会将图片指接送到浏览器端,记得在送出图片之前要先送出使用 content-type: image/gif 的标头字符串 (header) 到浏览器端,以顺利传输图片。若要使用透明背景的 gif 图,也就是 gif89a 的格式,需要先使用 imagecolortransparent() 配置透明背景.
- $values=array(
- 40,50,
- 20,240,
- 60,60,
- 240,20,
- 50,40,
- 10,10
- );
- $im=imagecreatetruecolor(250,250);
- $bg=imagecolorallocate($im,200,200,200);
- $yellow=imagecolorallocate($im,255,255,0);
- imagefilledpolygon($im,$values,6,$yellow);
- header('content-type: image/png');
-
- if(function_exists("imagegif"))
- {
-
- header("content-type: image/gif");
- imagegif($im);
- }
-
- elseif(function_exists("imagejpeg"))
- {
-
- header("content-type: image/jpeg");
- imagejpeg($im, "", 0.5);
- }
-
- elseif (function_exists("imagepng"))
- {
-
- header("content-type: image/png");
- imagepng($im);
- }
-
- elseif (function_exists("imagewbmp"))
- {
-
- header("content-type: image/vnd.wap.wbmp");
- /*
header() 函数向客户端发送原始的 http 报头,认识到一点很重要,即必须在任何实际的输出被发送之前调用 header() 函数(在 php 4 以及更高的版本中,您可以使用输出缓存来解决此问题):
- */
- imagewbmp($im);
- }
- else
- {
-
- die("no image support in this php server");
- }
- /*
该代码执行结果与代码22-25类似,所不同的是,该代码判断多种图像支持,然后用相应的格式输出图像.
语法:int imagegif(int im, string [filename]);
返回值:整数,函数种类:图形处理 |