位置: 编程技术 - 正文
推荐整理分享PHP:imagecreatefromjpeg()的用法_GD库图像处理函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4, PHP 5)
imagecreatefromjpeg — 由文件或 URL 创建一个新图象。
说明 resource imagecreatefromjpeg ( string $filename )imagecreatefromjpeg() 返回一图像标识符,代表了从给定的文件名取得的图像。
Tip如已启用fopen 包装器,在此函数中, URL 可作为文件名。关于如何指定文件名详见 fopen()。各种wapper 的不同功能请参见 支持的协议和封装协议,注意其用法及其可提供的预定义变量。
参数filename
JPEG 图像的路径。
返回值成功后返回图象资源,失败后返回 FALSE 。
范例Example #1 处理创建过程中的错误
<?phpfunctionLoadJpeg($imgname){/*尝试打开*/$im=@imagecreatefromjpeg($imgname);/*Seeifitfailed*/if(!$im){/*Createablackimage*/$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/jpeg');$img=LoadJpeg('bogus.image');imagejpeg($img);imagedestroy($img);?>以上例程的输出类似于:
注释Note: JPEG 支持仅在 PHP 与 GD-1.8 或更高版本一起编译时可用。
WarningWindows 版本的 PHP 在 4.3.0版之前不支持通过此函数访问远程文件,即使已经启用 allow_url_fopen.
PHP:imagecopyresampled()的用法_GD库图像处理函数 imagecopyresampled(PHP4=4.0.6,PHP5)imagecopyresampled重采样拷贝部分图像并调整大小说明boolimagecopyresampled(resource$dst_image,resource$src_image,int$dst_x,int$dst_y,int$src_x,int$src_
PHP:imagecreatefromwbmp()的用法_GD库图像处理函数 imagecreatefromwbmp(PHP4=4.0.1,PHP5)imagecreatefromwbmp由文件或URL创建一个新图象。说明resourceimagecreatefromwbmp(string$filename)imagecreatefromwbmp()返回一图像标识符,代表
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:imagecreatefromjpeg()的用法_GD库图像处理函数
本文链接地址:https://www.jiuchutong.com/biancheng/288359.html 转载请保留说明!友情链接: 武汉网站建设