php 图片处理函数 获取类型 扩展名
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-19 15:33:24 浏览: 评论:0
- image_type=image_type_to_mime_type(imagetype_png); //获取png的mime类型
- echo $image_type; //输出结果
- //
- $file = '1.jpg';
- $image = imagecreatefromjpeg($file);
- header('content-type: ' . image_type_to_mime_type(imagetype_wbmp));
- $fp=fopen($file,r);
- fpassthru($fp);
- image2wbmp($image,"1.bmp"); // output the stream directly
- //image_type_to_extension. (php教程 5). image_type_to_extension — 取得图像类型的文件 后缀 ... warning. 本函数暂无文档
- $file_ext=image_type_to_extension("1.jpg");
- echo $file_ext;
- //
- $filename="1.jpg"; //定义图像文件
- $size=getimagesize($filename); //获取图像的大小
- $fp=fopen($filename,"rb"); //打开文件
- if($size && $fp) //如果成功打开
- {
- header("content-type: {$size['mime']}"); //输出文件头信息
- fpassthru($fp); //输出文件内容
- exit; //中止操作
- }
- else
- {
- echo "文件打开失败,或者指定的不是图像文件"; //输出错误信息
- }//开源代码phpfensi.com
Tags: php图片处理函数 php图片扩展名
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)