深圳升蓝软件
数据库开发 .Net技术  |  ASP技术 PHP技术 JSP技术 应用技术类   
Hiblue Software

一个全面获取图象信息的函数getImageInfo()


March 23,2004
<?php  

function getImageInfo($img) { //$img为图象文件绝对路径  
$img_info = getimagesize($img);  
switch ($img_info[2]) {  
case 1:  
$imgtype = "GIF";  
break;  
case 2:  
$imgtype = "JPG";  
break;  
case 3:  
$imgtype = "PNG";  
break;  
}  
$img_type = $imgtype."图像";  
$img_size = ceil(filesize($img)/1000)."k"; //获取文件大小  

$new_img_info = array (  
"width"=>$img_info[0],  
"height"=>$img_info[1],  
"type"=>$img_type
"size"=>$img_size  
}  
return $new_img_info;  
}  
?>  
很简单,大家应该都看得懂的
Copyright © 2001-2008 Shenzhen Hiblue Software Team All rights reserved