예제 #1
0
파일: Image.php 프로젝트: hisaboh/w2t
 public static function all_resize($input_dir)
 {
     $cmd = new Command(sprintf("%s resize 20% %s", self::$imagemagick_mogrify, File::path($input_dir, "*")));
     if ($cmd->isStderr()) {
         throw new Exception($cmd->stderr());
     }
 }