网站地图    收藏   

主页 > php专栏 > php函数大全 >

php 图片处理函数 获取类型 扩展名 - php函数

来源:自学PHP网    时间:2014-11-25 00:26 作者: 阅读:

[导读] image_type=image_type_to_mime_type(imagetype_png);//获取png的mime类型echo$image_type;//输出结果//$file=#39;1.jpg#39;;$image=imag......

php 图片处理函数 获取类型 扩展名

  1. image_type=image_type_to_mime_type(imagetype_png);   //获取png的mime类型 
  2. echo $image_type;           //输出结果 
  3.  
  4. // 
  5.  
  6.  
  7. $file = '1.jpg'
  8. $image = imagecreatefromjpeg($file); 
  9. header('content-type: ' . image_type_to_mime_type(imagetype_wbmp)); 
  10. $fp=fopen($file,r); 
  11. fpassthru($fp); 
  12. image2wbmp($image,"1.bmp"); // output the stream directly 
  13.  
  14. //image_type_to_extension. (php教程 5). image_type_to_extension — 取得图像类型的文件 后缀 ... warning. 本函数暂无文档 
  15.  
  16. $file_ext=image_type_to_extension("1.jpg"); 
  17. echo $file_ext
  18.  
  19. // 
  20.  
  21. $filename="1.jpg";         //定义图像文件 
  22. $size=getimagesize($filename);      //获取图像的大小 
  23. $fp=fopen($filename,"rb");        //打开文件 
  24. if($size && $fp)          //如果成功打开 
  25.   header("content-type: {$size['mime']}");     //输出文件头信息 
  26.   fpassthru($fp);         //输出文件内容 
  27.   exit;           //中止操作 
  28. else 
  29.   echo "文件打开失败,或者指定的不是图像文件";   //输出错误信息 
  30. }//开源代码phpfensi.com

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论