熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

一個全面獲取圖象信息的函數getImageInfo()

2022-06-13   來源: PHP編程 

  <?php 

  function getImageInfo($img) { //$img為圖象文件絕對路徑 
$img_info = getimagesize($img); 
switch ($img_info[]) { 
case
$imgtype = "GIF"; 
break; 
case
$imgtype = "JPG"; 
break; 
case
$imgtype = "PNG"; 
break; 

$img_type = $imgtype"圖像"; 
$img_size = ceil(filesize($img)/)"k"; //獲取文件大小 
 

  $new_img_info = array ( 
"width"=>$img_info[] 
"height"=>$img_info[] 
"type"=>$img_type
"size"=>$img_size 

return $new_img_info; 

?> 


From:http://tw.wingwit.com/Article/program/PHP/201311/21110.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.