コード例 #1
0
ファイル: features.php プロジェクト: jordanmanning/ezpublish
 /**
  * Reset the cached information. 
  * 
  * @return void
  * @access private
  * @ignore
  */
 public static function reset()
 {
     self::$imageIdentify = null;
     self::$imageConvert = null;
     self::$os = null;
 }
コード例 #2
0
 /**
  * Returns the path to the ImageMagick convert utility.
  *
  * On Linux, Unix,... it will return something like: /usr/bin/convert
  * On Windows it will return something like: C:\Windows\System32\convert.exe
  *
  * @return string
  */
 public static function getImageConvertExecutable()
 {
     if (!is_null(self::$imageConvert)) {
         return self::$imageConvert;
     }
     return self::$imageConvert = self::findExecutableInPath('convert');
 }