相思资源网 Design By www.200059.com

共有两种等比例缩略图方法可以借鉴
一、为类文件,实例化之后即可使用
二、为自定义方法,比较轻巧

类文件
复制代码 代码如下:$resizeimage = new resizeimage("./shawn.jpg", "200", "100", "0","../pic/shawnsun.jpg");
//实例化下面的类,就能生成缩略图
//其中,源文件和缩略图地址可以相同,200,100分别代表宽和高,第四个参数为可选 0不截图,1为截图

复制代码 代码如下:<"."),1));
          //初始化图象
          $this->initi_img();
          //目标图象地址
          $this->dst_img($dstpath);
          //W & H
          $this->width  = imagesx($this->im);
          $this->height = imagesy($this->im);
          //生成图象
          $this->newimg();
          ImageDestroy ($this->im);
     }
    
    function newimg(){
    
        //改变后的图象的比例
        $resize_ratio = ($this->resize_width)/($this->resize_height);
        //实际图象的比例
        $ratio = ($this->width)/($this->height);
        
        if(($this->cut)=="1")
        //裁图
        {
            if($ratio>=$resize_ratio)
            //高度优先
            {
                $newimg = imagecreatetruecolor($this->resize_width,$this->resize_height);
                imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width,
                                   $this->resize_height, (($this->height)*$resize_ratio),
                                   $this->height
                );
                ImageJpeg ($newimg,$this->dstimg);
            }
            if($ratio<$resize_ratio)
            //宽度优先
            {
                $newimg = imagecreatetruecolor($this->resize_width,$this->resize_height);
                imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width,
                                   $this->resize_height, $this->width,
                                   (($this->width)/$resize_ratio)
                );
                ImageJpeg ($newimg,$this->dstimg);
            }
              }
        else
        //不裁图
        {
            if($ratio>=$resize_ratio)
            {
                $newimg = imagecreatetruecolor($this->resize_width,
                                               ($this->resize_width)/$ratio
                );
                imagecopyresampled($newimg, $this->im, 0, 0, 0, 0, $this->resize_width,
                                   ($this->resize_width)/$ratio, $this->width,
                                   $this->height
                );
                ImageJpeg ($newimg,$this->dstimg);
            }
            if($ratio<$resize_ratio)
            {
                $newimg = imagecreatetruecolor(($this->resize_height)*$ratio,
                                                $this->resize_height
                );
                imagecopyresampled($newimg, $this->im, 0, 0, 0, 0,
                                   ($this->resize_height)*$ratio,
                                   $this->resize_height, $this->width,
                                   $this->height
                );
                ImageJpeg ($newimg,$this->dstimg);
            }
        }
   }
    
    //初始化图象
    function initi_img(){
 
        if($this->type=="jpg")
        {
            $this->im = imagecreatefromjpeg($this->srcimg);
        }
        if($this->type=="gif")
        {
            $this->im = imagecreatefromgif($this->srcimg);
        }
        if($this->type=="png")
        {
            $this->im = imagecreatefrompng($this->srcimg);
        }
    }
    //图象目标地址
    function dst_img($dstpath){
    
        $full_length  = strlen($this->srcimg);
        $type_length  = strlen($this->type);
        $name_length  = $full_length-$type_length;
 
        $name = substr($this->srcimg,0,$name_length-1);
        $this->dstimg = $dstpath;
 
        //echo $this->dstimg;
    }
}
 
"codetitle">复制代码 代码如下:
thumbs('shawn.jpg','shawnsun.jpg',100,100);
//参数属性类似于方法一

复制代码 代码如下:
<"image/pjpeg" || $IMGInfo['mime']=="image/jpeg"){
        $ThisPhoto= imagecreatefromjpeg($FileName);
    }elseif($IMGInfo['mime']== "image/x-png" || $IMGInfo['mime']== "image/png"){
        $ThisPhoto= imagecreatefrompng($FileName);  
    }elseif($IMGInfo['mime']== "image/gif"){
        $ThisPhoto=imagecreatefromgif($FileName);
    }
    
    $width=$IMGInfo[0];
    $height=$IMGInfo[1];  
    $scalc = max($width/$SetW,$height/$SetH);
    $nw = intval($width/$scalc);
    $nh = intval($height/$scalc);
    echo "缩略大小:w$nw,h$nh <br /-->";
    
    if($SetW-$nw == 1){$nw = $SetW;}
    if($SetH-$nh == 1){$nh = $SetH;}
    echo "+修正1像素: w$nw,h$nh<br>";
    
    //补宽
    if($SetW-$nw > 0){
        $nh = $nh +(($nh/$nw) * ($SetW-$nw));
        echo "*需补宽".($SetW-$nw).",陪补高".(($nh/$nw) * ($SetW-$nw))."  <br>"; 
        $nw = $SetW;
    }
    //补高
    if($SetH-$nh > 0){
        $nw = $nw + (($nw/$nh) * ($SetH-$nh));
        echo "*需补高".($SetH-$nh).",陪补宽". (($nw/$nh) * ($SetH-$nh)) ."<br>";
        $nh = $SetH;
    }
    $nw = intval($nw);
    $nh = intval($nh);
    echo "+修正大小:w$nw,h$nh<br>";
    
    $px = ($SetW - $nw)/2;
    $py = ($SetH - $nh)/2;
    echo "窗口大小:w$SetW,h$SetH <br>";
    echo "+偏移修正:x$px,y$py <br>";
    
    $NewPhoto=imagecreatetruecolor($SetW,$SetH);
    imagecopyresized($NewPhoto,$ThisPhoto,$px,$py,0,0,$nw,$nh,$width,$height);
    ImageJpeg ($NewPhoto,$SaveTo);
    return true;
}
    
?>

标签:
PHP,生成等比缩略图

相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com

评论“PHP生成等比缩略图类和自定义函数分享”

暂无PHP生成等比缩略图类和自定义函数分享的评论...

《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线

暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。

艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。

《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。