php获取图片尺寸的例子,php图像函数getImageInfo()用法

发布时间:2020-01-20编辑:脚本学堂
php图像函数getImageInfo()的例子,php自定义函数中使用getimagesize获取图片尺寸信息与文件大小等。

php图像函数getImageInfo()用法

代码:
 

复制代码 代码示例:

<?php
function getImageInfo($img){ //$img为图象文件绝对路径,例如,D:iamgejn0-541.gif
$img_info=getimagesize($img);
switch($img_info[2]){
case1:
$imgtype="GIF";
break;
case2:
$imgtype="JPG";
break;
case3:
$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;
}
?>