> php教程 > PHP源码 > 본문

PHP按最大宽高等比例缩放图片类

PHP中文网
풀어 주다: 2016-05-25 17:05:55
원래의
1258명이 탐색했습니다.

支持jpg、png、gif格式

<?php
class slpic {
    //原图片文件,包含路径和文件名
    var $orpic; 
    //原图的临时图像
    var $tempic;
    //缩略图
    var $thpic;
    //原宽度
    var $width; 
    //原高度
    var $height;
    //图片类型
    var $type;
    //缩略后的宽度
    var $thwidth;
    //缩略后的高度
    var $thheight;
     
    function __construct($file){
        $this->orpic = $file;
        $infos = getimagesize($file);
        $this->width = $infos[0];
        $this->height = $infos[1];
        $this->type = $infos[2];
    }
     
    //根据用户所指定最大宽高来计算缩略图尺寸
    function cal_size($maxwidth, $maxheight){
        //缩略图最大宽度与最大高度比
        $thcrown = $maxwidth/$maxheight;    
        //原图宽高比
        $crown = $this->width/$this->height;    
        if($crown/$thcrown >= 1){
            $this->thwidth = $maxwidth;
            $this->thheight = $maxwidth/$crown;
        } else {
            $this->thheight = $maxheight;
            $this->thwidth = $maxheight*$crown;
        }
    }
     
    function init(){
        switch($this->type){
            case 1:     //GIF
                $this->tempic = imagecreatefromgif($this->orpic);
                break;
            case 2:     //JPG
                $this->tempic = imagecreatefromjpeg($this->orpic);
                break;
            case 3:     //PNG
                $this->tempic = imagecreatefrompng($this->orpic);
                break;
            default:
                echo &#39;暂不支持该图片格式&#39;;
        }
    }
 
    function resize($maxwidth, $maxheight){
        //初始化图像
        $this->init();
        //计算出缩略图尺寸
        $this->cal_size($maxwidth, $maxheight);
         
        $this->thpic = imagecreatetruecolor($this->thwidth, $this->thheight);
        imagecopyresampled($this->thpic, $this->tempic, 0, 0, 0 ,0, $this->thwidth, $this->thheight, $this->width, $this->height);
    }
     
    function save($filename, $type){
        switch($type){
            case &#39;jpg&#39;:
            case &#39;jpeg&#39;:
                imagejpeg($this->thpic, $filename);
                break;
            case &#39;png&#39;:
                imagepng($$this->thpic, $filename);
                break;
            case &#39;gif&#39;:
                imagegif($$this->thpic, $filename);
                break;
            default:
                echo &#39;暂不支持您所选择的格式&#39;;
        }
    }
}
?>
로그인 후 복사

                   

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!