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


    本来用phpthumb来缩略图片是十分方便的,但是最近在sae上写项目发现phpthumb在sae上保存文件时会出问题,想来实现一个简单的按最大宽高等比例缩放图片类也并不困难,于是便自己写了一个方便修改。

       需GD库支持,可支持jpg、jpeg、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 '暂不支持该图片格式';
            }
        }
    
        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 'jpg':
                case 'jpeg':
                    imagejpeg($this->thpic, $filename);
                    break;
                case 'png':
                    imagepng($$this->thpic, $filename);
                    break;
                case 'gif':
                    imagegif($$this->thpic, $filename);
                    break;
                default:
                    echo '暂不支持您所选择的格式';
            }
        }
    }
    ?>
  • 相关阅读:
    进程实际操作篇2
    进程的实际操作篇1
    进程的理论知识
    解决套接字粘包,udp套接字对象的使用和socketserver模块实现并发
    day24-网络知识扫盲,socket的基本使用
    day23-网络编程之互联网基础,tcp/ip协议详细介绍
    day21-多态和多态性,鸭子类型,反射,内置方法,异常处理
    JAVA WEB小测
    JAVA动手动脑
    JAVA课上动手动脑问题2
  • 原文地址:https://www.cnblogs.com/MyFlora/p/3139808.html
Copyright © 2020-2023  润新知