打印

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

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

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

<?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;
}
?>

TOP

当前时区 GMT-4, 现在时间是 2008-10-15 16:11
ComePlay8.Com
Powered by Discuz! 6.0.0 © 2001-2007 Comsenz Inc.
Processed in 0.104016 second(s), 10 queries, Gzip enabled
TOP
清除 Cookies - 联系我们 - 来玩吧 - Archiver - WAP
Designed By Discuz! Support Team