ホームページ  >  記事  >  CMS チュートリアル  >  ディスカス画像加工サムネイル表示方法の紹介

ディスカス画像加工サムネイル表示方法の紹介

青灯夜游
青灯夜游転載
2020-12-30 18:03:144047ブラウズ

ディスカス画像加工サムネイル表示方法の紹介

関連する推奨事項: "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 画像処理サムネイル表示

プログラミング関連のその他の知識については、こちらをご覧ください。 : プログラミング教育! !

以上がディスカス画像加工サムネイル表示方法の紹介の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はcsdn.netで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。