Example #1
0
 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());
     }
 }