位置: 编程技术 - 正文
推荐整理分享PHP:imagecreatefromwbmp()的用法_GD库图像处理函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4 >= 4.0.1, PHP 5)
imagecreatefromwbmp — 由文件或 URL 创建一个新图象。
说明 resource imagecreatefromwbmp ( string $filename )imagecreatefromwbmp() 返回一图像标识符,代表了从给定的文件名取得的图像。
Tip如已启用fopen 包装器,在此函数中, URL 可作为文件名。关于如何指定文件名详见 fopen()。各种wapper 的不同功能请参见 支持的协议和封装协议,注意其用法及其可提供的预定义变量。
参数filename
WBMP 图像的路径。
返回值成功后返回图象资源,失败后返回 FALSE 。
范例Example #1 处理创建 WBMP 过程中的错误
<?phpfunctionLoadWBMP($imgname){/*Attempttoopen*/$im=@imagecreatefromwbmp($imgname);/*Seeifitfailed*/if(!$im){/*Createablankimage*/$im=imagecreatetruecolor(,);$bgc=imagecolorallocate($im,,,);$tc=imagecolorallocate($im,0,0,0);imagefilledrectangle($im,0,0,,,$bgc);/*Outputanerrormessage*/imagestring($im,1,5,5,'Errorloading'.$imgname,$tc);}return$im;}header('Content-Type:image/vnd.wap.wbmp');$img=LoadWBMP('bogus.image');imagewbmp($img);imagedestroy($img);?> 注释Note: WBMP 支持仅在 PHP 与 GD-1.8 或更高版本一起编译时可用。
WarningWindows 版本的 PHP 在 4.3.0版之前不支持通过此函数访问远程文件,即使已经启用 allow_url_fopen.
PHP:imagecopyresized()的用法_GD库图像处理函数 imagecopyresized(PHP4,PHP5)imagecopyresized拷贝部分图像并调整大小说明boolimagecopyresized(resource$dst_image,resource$src_image,int$dst_x,int$dst_y,int$src_x,int$src_y,int$dst_w,int$dst_h
PHP:imagecreatefromstring()的用法_GD库图像处理函数 imagecreatefromstring(PHP4=4.0.4,PHP5)imagecreatefromstring从字符串中的图像流新建一图像说明resourceimagecreatefromstring(string$image)imagecreatefromstring()返回一个图像标识符
PHP:imagecreatefrompng()的用法_GD库图像处理函数 imagecreatefrompng(PHP4,PHP5)imagecreatefrompng由文件或URL创建一个新图象。说明resourceimagecreatefrompng(string$filename)imagecreatefrompng()返回一图像标识符,代表了从给定
标签: PHP:imagecreatefromwbmp()的用法_GD库图像处理函数
本文链接地址:https://www.jiuchutong.com/biancheng/288361.html 转载请保留说明!上一篇:PHP:imagecopyresampled()的用法_GD库图像处理函数
友情链接: 武汉网站建设