이미지 세부정보를 얻는 PHP 방법
먼저 절대 경로인 이미지 경로의 $filename 매개변수를 전달합니다.
먼저 getimagesize 메소드를 통해 이미지 크기를 가져옵니다.
//获取图片详细信息 function getImageInfo($filename){ //$img为图像文件绝对路径 $size = getimagesize($filename); 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($filename) / 1000) . "k"; //获取文件大小 $imgInfo = array( "width" => $size[0], "height" => $size[1], "type" => $img_type, "size" => $img_size ); return $imgInfo; }