예제 #1
0
파일: Image.php 프로젝트: nanodesu88/easyii
 public static function getImageSize($filepath)
 {
     if (extension_loaded('gd')) {
         $image = new GD($filepath);
         return $image->getSize();
     }
 }