Rumah > Artikel > Tutorial CMS > 织梦DedeCms如何获取缩略图的高度和宽度
织梦DedeCms如何获取缩略图的高度和宽度?
织梦DedeCms获取缩略图的高度和宽度
推荐学习:织梦cms
某些瀑布流的代码要求图片必须带有高度,而织梦默认的缩略图仅仅是储存的图片路径,想要输出图片的高度就必须用别的办法,目前我只想到用getimagesize这个函数了,这也是相对比较简单的实现方案了,
但是在实际应用的过程中貌似有个问题,我也搞不懂是什么原因,具体表现为
$GLOBALS['cfg_basehost'] 里带有www则不能正常获取,例如 http://www.xxx.com ,如果为 http://xxx.com这种url就能正常获取,奇怪之极。
当然,这种办法极费资源。
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; } }
模板中直接用 [field:litpic function="getheight(@me)"/] 就能输出图片高度
例
<img src="[field:litpic/]" height=" [field:litpic function="getheight(@me)"/]">
第二种办法(推荐):
在/dede/article_add.php 插入数据库前添加以下代码:
//获取缩略图宽度及高度 $litpicc = $GLOBALS['cfg_basehost'].$litpic; $arr = getimagesize($litpicc);
$arr[0]就是宽度,$arr[1]就是高度
将这两个值插入数据库中即可(之前请先添加相应字段)
这样通过数据库调用就大大节省了系统资源。
Atas ialah kandungan terperinci 织梦DedeCms如何获取缩略图的高度和宽度. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!