首页  >  文章  >  CMS教程  >  discuz图片处理缩略图显示的方法介绍

discuz图片处理缩略图显示的方法介绍

青灯夜游
青灯夜游转载
2020-12-30 18:03:144047浏览

discuz图片处理缩略图显示的方法介绍

相关推荐:《discuz教程

function thumblist($pid, $width = 0, $height = 0, $maximgcount = 3, $tid = 0){
    global $_G;
    if(!$pid) return array();
    $width = intval($width);
    $height = intval($height);
    $maximgcount = intval($maximgcount);
    $tid = intval($tid);
    $maximgcount = $maximgcount <= 0 ? 3 : $maximgcount;
    $maximgcount = min($maximgcount, 3);
    $width = $width <= 0 ? 200 : $width;
    $height = $height <= 0 ? 100 : $height;
 
    if(!$tid) {
        $tid = C::t(&#39;forum_post&#39;)->fetch_tid_by_pid($pid);
    }
 
    if(!$tid) return array();
    $attachments = C::t(&#39;forum_attachment_n&#39;)->fetch_all_by_id(&#39;tid:&#39;.$tid, &#39;pid&#39;, $pid, &#39;aid&#39;, true, false, false, $maximgcount);
    $list = array();
    $count = 0;
    $nums = count($attachments);
    if($nums ==1){
        $width = 692;
        $height =708;
    } elseif ($nums == 2) {
        $width = 660;
        $height = 700;
    } else if($nums ===3){
        $width = 440;
        $height = 532;
    }
    foreach($attachments as $aid=>$attachment) {
        $bigimage = $_G[&#39;setting&#39;][&#39;attachurl&#39;].&#39;forum/&#39;.$attachment[&#39;attachment&#39;];
        $thumbfile = &#39;image/&#39;.helper_attach::makethumbpath($attachment[&#39;aid&#39;], $width, $height);
        if(is_file($_G[&#39;setting&#39;][&#39;attachdir&#39;].$thumbfile)) {
            $thumbfile = $_G[&#39;setting&#39;][&#39;attachurl&#39;].$thumbfile;
        } else {
            $thumbfile = &#39;/&#39;.getforumimg($attachment[&#39;aid&#39;], 0, $width, $height,&#39;fixwr&#39;);
        }
        if($attachment[&#39;width&#39;] < $width) $thumbfile = $bigimage;
        $list[] = array(&#39;thumb&#39;=>$thumbfile, &#39;attachment&#39;=>$bigimage, &#39;aid&#39;=>$attachment[&#39;aid&#39;]);
        $count++;
        if($count >= $maximgcount) break;
    }
 
    return $list;
}

discuz图片处理缩略图显示

更多编程相关知识,请访问:编程教学!!

以上是discuz图片处理缩略图显示的方法介绍的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:csdn.net。如有侵权,请联系admin@php.cn删除