打开/include/helpers/extend.helper.php文件
添加
if ( ! function_exists('getheight')) 
 function getheight($litpic){ 
 $litpicc = $GLOBALS['cfg_basehost'].$litpic; 
 $arr  = getimagesize($litpicc); 
 $resault = $arr[1];   // 此为高度 
 //$resault = $arr[0];    //此为宽度 
 return $resault; 
 } 
}
  • 前端调用
<img src="[field:litpic/]" height=" [field:litpic function="getheight(@me)"/]">