Home > CMS Tutorial > Discuz > body text

Introduction to the method of discuz image processing thumbnail display

青灯夜游
Release: 2021-02-01 11:57:26
forward
4040 people have browsed it

Introduction to the method of discuz image processing thumbnail display

Related recommendations: "discuz tutorial"

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;
}
Copy after login

discuz image processing thumbnail display

More programming related knowledge, Please visit: Programming Teaching! !

The above is the detailed content of Introduction to the method of discuz image processing thumbnail display. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!