位置: 编程技术 - 正文
推荐整理分享PHP:imagegif()的用法_GD库图像处理函数(php中imagecreatefromjpeg),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:php image,php image,php img,php imagefill,php imagettftext()函数,php imagefill,php imagettftext()函数,php image,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4, PHP 5)
imagegif — 输出图象到浏览器或文件。
说明 bool imagegif ( resource $image [, string $filename ] )imagegif() 从 image 图像以 filename 为文件名创建一个 GIF 图像。image 参数是 imagecreate() 或 imagecreatefrom* 函数的返回值。
图像格式为 GIFa。如果用了 imagecolortransparent() 使图像为透明,则其格式为 GIFa。
参数image
由图象创建函数(例如imagecreatetruecolor())返回的图象资源。
filename文件保存的路径,如果未设置或为 NULL,将会直接输出原始图象流。
返回值成功时返回 TRUE, 或者在失败时返回 FALSE。
范例
Example #1 使用 imagegif() 输出一个图像
<?php//创建新的图像实例$im=imagecreatetruecolor(,);//设置背景为白色imagefilledrectangle($im,0,0,,,0xFFFFFF);//在图像上写字imagestring($im,3,,,'GDLibrary',0xFFBA);//输出图像到浏览器header('Content-Type:image/gif');imagegif($im);imagedestroy($im);?>Example #2 使用 imagegif() 将一个 PNG 转换成 GIF
<?php//载入PNG$png=imagecreatefrompng('./php.png');//以GIF保存图像imagegif($png,'./php.gif');//释放内存imagedestroy($png);//完工echo'ConvertedPNGimagetoGIFwithsuccess!';?> 注释Note:
不过从 GD 库 1.6 起所有的 GIF 支持都移除了,并在版本 2.0. 中加了回来。如果使用这些 版本之间的 GD 库时本函数不可用。 更多信息见 »GD Project 站点。
以下代码段通过自动检测 GD 支持的图像类型来写出移植性更好的 PHP 程序。用更灵活的代码替代了原来的 header("Content-type: image/gif"); imagegif($im);:<?php//创建新的图像实例$im=imagecreatetruecolor(,);//在这里对图像进行一些操作//处理输出if(function_exists('imagegif')){//针对GIFheader('Content-Type:image/gif');imagegif($im);}elseif(function_exists('imagejpeg')){//针对JPEGheader('Content-Type:image/jpeg');imagejpeg($im,NULL,);}elseif(function_exists('imagepng')){//针对PNGheader('Content-Type:image/png');imagepng($im);}elseif(function_exists('imagewbmp')){//针对WBMPheader('Content-Type:image/vnd.wap.wbmp');imagewbmp($im);}else{imagedestroy($im);die('NoimagesupportinthisPHPserver');}//如果发现图像是以上的格式之一,就从内存中释放if($im){imagedestroy($im);}?>
Note:
自 PHP 3.0. 和 4.0.2 起可以用 imagetypes() 函数代替 function_exists() 来检查是否支持某种图像格式:<?phpif(imagetypes()&IMG_GIF){header('Content-Type:image/gif');imagegif($im);}elseif(imagetypes()&IMG_JPG){/*...etc.*/}?>
参见imagepng() - 以 PNG 格式将图像输出到浏览器或文件 imagewbmp() - 以 WBMP 格式将图像输出到浏览器或文件 imagejpeg() - 输出图象到浏览器或文件。 imagetypes() - 返回当前 PHP 版本所支持的图像类型
PHP:imagefttext()的用法_GD库图像处理函数 imagefttext(PHP4=4.0.7,PHP5)imagefttext使用FreeType2字体将文本写入图像说明arrayimagefttext(resource$image,float$size,float$angle,int$x,int$y,int$color,string$fontfile,string$text[,array$e
PHP:imagegrabwindow()的用法_GD库图像处理函数 imagegrabwindow(PHP5=5.2.2)imagegrabwindowCapturesawindow说明resourceimagegrabwindow(int$window_handle[,int$client_area=0])Grabsawindoworitsclientareausingawindowshandle(HWNDpropertyinCOMinstance)
PHP:imagegrabscreen()的用法_GD库图像处理函数 imagegrabscreen(PHP5=5.2.2)imagegrabscreenCapturesthewholescreen说明resourceimagegrabscreen(void)Grabsascreenshotofthewholescreen.返回值Returnsanimageresourceidentifieronsuccess,FALSEonfailure.
友情链接: 武汉网站建设