Copyright @ 2015-2024 织梦园 版权所有 Power by DedeCms
鲁ICP备15039853号-2

模板标签 TAG标签 网站地图 XML地图 今日更新 返回顶部
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;
}
}
|
//获取缩略图宽高
if(empty($litpic))
{
$imgwidth = $imgheight = '';
}
else {
$srcFile = $cfg_basedir.$litpic;
$info = "";
$data = GetImageSize($srcFile, $info);
$imgwidth=$data[0];
$imgheight=$data[1];
}
|