示例#1
0
文件: Font.php 项目: phpsmith/IS4C
 /**
  * Set autoSize method
  *
  * @param string $pValue
  * @return     boolean                    Success or failure
  */
 public static function setAutoSizeMethod($pValue = self::AUTOSIZE_METHOD_APPROX)
 {
     if (!in_array($pValue, self::$_autoSizeMethods)) {
         return FALSE;
     }
     self::$autoSizeMethod = $pValue;
     return TRUE;
 }
示例#2
0
 /**
  * Set autoSize method
  *
  * @param string $pValue
  */
 public static function setAutoSizeMethod($pValue = 'approx')
 {
     self::$autoSizeMethod = $pValue;
 }