`
liboxlu
  • 浏览: 64288 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

使用GD库对图片的缩放功能函数

阅读更多
最近在网上找了些资料,然后稍微修改重新封装成了一个可以直接调用的公共函数
<?php

    define ('IMG_FILTER_CACHE_SIZE', 250);             // number of files to store before clearing cache
    define ('IMG_FILTER_CACHE_CLEAR', 5);              // maximum number of files to delete on each cache clear
    define ('IMG_FILTER_VERSION', '1.09');             // version number (to force a cache refresh

    
    /**
     * 缩小图片的处理函数,当$width和$height都为零时,函数默认为100x100的图片
     * 使用示例1:minifyPicture(UPLOAD_PIC_DIR.$main_imagename, 0, 0, 0, 100);
     * 这个语句会调用函数将目标图片等比例转换为100x100的图片,图片质量设为100(即最高质量)
     * 使用示例2:minifyPicture(UPLOAD_PIC_DIR.$main_imagename, 150, 150, 0, 50);
     * 这个语句会调用函数将目标图片等比例转换为150x150的图片,图片质量设为50
     * @param string $src, 文件的绝对路径
     * @param int $width, 缩小后的图片宽
     * @param int $height, 缩小后的图片高
     * @param int $zoom_crop, 是否等比例缩放,为0时按等比例缩小,为1则只取图片一部分
     * @param int $quality, 缩小图片的画面质量,取值在(0,100],100为画面最高质量
     * @return string,操作成功,返回空字符串,否则返回错误提示信息
     */
    function minifyPicture($src, $width, $height, $zoom_crop, $quality){
        $imageFilters = array(
        "1" => array("IMG_FILTER_NEGATE", 0),
        "2" => array("IMG_FILTER_GRAYSCALE", 0),
        "3" => array("IMG_FILTER_BRIGHTNESS", 1),
        "4" => array("IMG_FILTER_CONTRAST", 1),
        "5" => array("IMG_FILTER_COLORIZE", 4),
        "6" => array("IMG_FILTER_EDGEDETECT", 0),
        "7" => array("IMG_FILTER_EMBOSS", 0),
        "8" => array("IMG_FILTER_GAUSSIAN_BLUR", 0),
        "9" => array("IMG_FILTER_SELECTIVE_BLUR", 0),
        "10" => array("IMG_FILTER_MEAN_REMOVAL", 0),
        "11" => array("IMG_FILTER_SMOOTH", 0),
        );
        
        if($src == "" || strlen($src) <= 3)
            return "no image specified";

//        $orifilesize = filesize($src);
//        if($orifilesize <= 1024*500)
//            return;

        $picinfo = pathinfo($src);
        $picname = $picinfo["basename"];
        // set path to cache directory (default is ./cache)
        // this can be changed to a different location
        $cache_dir = $picinfo['dirname'];
        
        // last modified time (for caching)
        $lastModified = filemtime($src);

//        // get properties
        $new_width              = preg_replace("/[^0-9]+/", "", $width);
        $new_height             = preg_replace("/[^0-9]+/", "", $height);
        $zoom_crop              = preg_replace("/[^0-9]+/", "", $zoom_crop);
        $quality                = preg_replace("/[^0-9]+/", "", $quality);
        $filters                = "";

        if ($new_width == 0 && $new_height == 0) {
            $new_width = 100;
            $new_height = 100;
        }

        

        // get mime type of src
        $mime_type = IMG_FILTER_mime_type($src);

        // check to see if this image is in the cache already
        IMG_FILTER_check_cache( $cache_dir );

        // if not in cache then clear some space and generate a new file
        //cleanCache();

        ini_set('memory_limit', "50M");

        // make sure that the src is gif/jpg/png
        if(!IMG_FILTER_valid_src_mime_type($mime_type)) {
            return "Invalid src mime type: " .$mime_type;
        }

        // check to see if GD function exist
        if(!function_exists('imagecreatetruecolor')) {
            return "GD Library Error: imagecreatetruecolor does not exist";
        }

        if(strlen($src) && file_exists($src)) {

            // open the existing image
            $image = IMG_FILTER_open_image($mime_type, $src);
            if($image === false) {
                return 'Unable to open image : ' . $src;
            }

            // Get original width and height
            $width = imagesx($image);
            $height = imagesy($image);

            // don't allow new width or height to be greater than the original
            if( $new_width > $width ) {
                $new_width = $width;
            }
            if( $new_height > $height ) {
                $new_height = $height;
            }

//            // generate new w/h if not provided
//            if( $new_width && !$new_height ) {
//
//                $new_height = $height * ( $new_width / $width );
//
//            } elseif($new_height && !$new_width) {
//
//                $new_width = $width * ( $new_height / $height );
//
//            } elseif(!$new_width && !$new_height) {
//
//                $new_width = $width;
//                $new_height = $height;
//
//            }

            //assign the start position on the canvas
            if( $height > $width ){
                $dst_height = $new_height;
                $dst_width = $dst_height*($width/$height);
                $dst_x = ( $new_width - $dst_width )/2;
                $dst_y = 0;
            }elseif( $height < $width ){
                $dst_width = $new_width;
                $dst_height = $dst_width*($height/$width);
                $dst_x = 0;
                $dst_y = ( $new_height - $dst_height)/2;
            }elseif( $height == $width ){
                $dst_width = $new_width;
                $dst_height = $new_height;
                $dst_x = 0;
                $dst_y = 0;
            }
            // create a new true color image
            $canvas = imagecreatetruecolor( $new_width, $new_height );
            imagealphablending($canvas, false);
            // Create a new transparent color for image
            $color = imagecolorallocatealpha($canvas, 250, 250, 250, 127);
            // Completely fill the background of the new image with allocated color.
            imagefill($canvas, 0, 0, $color);
            // Restore transparency blending
            imagesavealpha($canvas, true);

            if( $zoom_crop ) {

                $src_x = $src_y = 0;
                $src_w = $width;
                $src_h = $height;

                $cmp_x = $width  / $new_width;
                $cmp_y = $height / $new_height;

                // calculate x or y coordinate and width or height of source

                if ( $cmp_x > $cmp_y ) {

                    $src_w = round( ( $width / $cmp_x * $cmp_y ) );
                    $src_x = round( ( $width - ( $width / $cmp_x * $cmp_y ) ) / 2 );

                } elseif ( $cmp_y > $cmp_x ) {

                    $src_h = round( ( $height / $cmp_y * $cmp_x ) );
                    $src_y = round( ( $height - ( $height / $cmp_y * $cmp_x ) ) / 2 );

                }

                imagecopyresampled( $canvas, $image, 0, 0, $src_x, $src_y, $new_width, $new_height, $src_w, $src_h );

            } else {

                // copy and resize part of an image with resampling
                imagecopyresampled( $canvas, $image, $dst_x, $dst_y, 0, 0, $dst_width, $dst_height, $width, $height );

            }

            if ($filters != "") {
                // apply filters to image
                $filterList = explode("|", $filters);
                foreach($filterList as $fl) {
                    $filterSettings = explode(",", $fl);
                    if(isset($imageFilters[$filterSettings[0]])) {

                        for($i = 0; $i < 4; $i ++) {
                            if(!isset($filterSettings[$i])) {
                                $filterSettings[$i] = null;
                            }
                        }

                        switch($imageFilters[$filterSettings[0]][1]) {

                            case 1:

                                imagefilter($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1]);
                                break;

                            case 2:

                                imagefilter($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2]);
                                break;

                            case 3:

                                imagefilter($canvas, $imageFilters[$filterSettings[0]][0], $filterSettings[1], $filterSettings[2], $filterSettings[3]);
                                break;

                            default:
                                
                                imagefilter($canvas, $imageFilters[$filterSettings[0]][0]);
                                break;

                            }
                        }
                    }
                }

                // output image to browser based on mime type
                IMG_FILTER_show_image($mime_type, $canvas, $cache_dir, $quality, $picname);

                // remove image from memory
                //imagedestroy($canvas);
                return "";
            } else {

                if(strlen($src)) {
                    return "image " . $src . " not found";
                } else {
                    return "no source specified";
                }

            }

    }  
//=======================================================================================================
/**
 *  以下是一些辅助处理函数
 */
        function IMG_FILTER_show_image($mime_type, $image_resized, $cache_dir, $quality, $picname) {

            // check to see if we can write to the cache directory
            $is_writable = 0;
            $cache_file_name = $cache_dir . '/' . $picname;

            if(touch($cache_file_name)) {

                // give 666 permissions so that the developer
                // can overwrite web server user
                chmod($cache_file_name, 0666);
                $is_writable = 1;

            } else {

                $cache_file_name = NULL;
                header('Content-type: ' . $mime_type);

            }

            //$quality = floor($quality * 0.09);

            imagejpeg($image_resized, $cache_file_name, $quality);

            if($is_writable) {
                //IMG_FILTER_show_cache_file($cache_dir, $mime_type, $picname);
            }

            imagedestroy($image_resized);            

        }

/**
 *
 */
        function IMG_FILTER_open_image($mime_type, $src) {

            if(stristr($mime_type, 'gif')) {

                $image = imagecreatefromgif($src);

            } elseif(stristr($mime_type, 'jpeg')) {

                @ini_set('gd.jpeg_ignore_warning', 1);
                $image = imagecreatefromjpeg($src);

            } elseif( stristr($mime_type, 'png')) {

                $image = imagecreatefrompng($src);

            }

            return $image;

        }

/**
 * clean out old files from the cache
 * you can change the number of files to store and to delete per loop in the defines at the top of the code
 */
        function IMG_FILTER_cleanCache() {

            $files = glob("cache/*", GLOB_BRACE);

            $yesterday = time() - (24 * 60 * 60);

            if (count($files) > 0) {

                usort($files, "filemtime_compare");
                $i = 0;

                if (count($files) > IMG_FILTER_CACHE_SIZE) {

                    foreach ($files as $file) {

                        $i ++;

                        if ($i >= IMG_FILTER_CACHE_CLEAR) {
                            return;
                        }

                        if (filemtime($file) > $yesterday) {
                            return;
                        }

                        unlink($file);

                    }

                }

            }

        }

/**
 * compare the file time of two files
 */
        function IMG_FILTER_filemtime_compare($a, $b) {

            return filemtime($a) - filemtime($b);

        }

/**
 * determine the file mime type
 */
        function IMG_FILTER_mime_type($file) {

            if (stristr(PHP_OS, 'WIN')) {
                $os = 'WIN';
            } else {
                $os = PHP_OS;
            }

            $mime_type = '';

            if (function_exists('mime_content_type')) {
                $mime_type = mime_content_type($file);
            }

            // use PECL fileinfo to determine mime type
            if (!IMG_FILTER_valid_src_mime_type($mime_type)) {
                if (function_exists('finfo_open')) {
                    $finfo = finfo_open(FILEINFO_MIME);
                    $mime_type = finfo_file($finfo, $file);
                    finfo_close($finfo);
                }
            }

            // try to determine mime type by using unix file command
            // this should not be executed on windows
            if (!IMG_FILTER_valid_src_mime_type($mime_type) && $os != "WIN") {
                if (preg_match("/FREEBSD|LINUX/", $os)) {
                    $mime_type = trim(@shell_exec('file -bi "' . $file . '"'));
                }
            }

            // use file's extension to determine mime type
            if (!IMG_FILTER_valid_src_mime_type($mime_type)) {

                // set defaults
                $mime_type = 'image/png';
                // file details
                $fileDetails = pathinfo($file);
                $ext = strtolower($fileDetails["extension"]);
                // mime types
                $types = array(
                        'jpg'  => 'image/jpeg',
                        'jpeg' => 'image/jpeg',
                        'png'  => 'image/png',
                        'gif'  => 'image/gif'
                );

                if (strlen($ext) && strlen($types[$ext])) {
                    $mime_type = $types[$ext];
                }

            }

            return $mime_type;

        }

/**
 *
 */
        function IMG_FILTER_valid_src_mime_type($mime_type) {

            if (preg_match("/jpg|jpeg|gif|png/i", $mime_type)) {
                return true;
            }

            return false;

        }

/**
 *
 */
        function IMG_FILTER_check_cache($cache_dir) {

            // make sure cache dir exists
            if (!file_exists($cache_dir)) {
                // give 777 permissions so that developer can overwrite
                // files created by web server user
                mkdir($cache_dir);
                chmod($cache_dir, 0777);
            }
            chmod($cache_dir, 0777);
            //show_cache_file($cache_dir, $mime_type, $lastModified);

        }

/**
 *
 */
        function IMG_FILTER_show_cache_file($cache_dir,$mime_type,$picname) {

            $cache_file = $cache_dir . '/' . $picname;

            if (file_exists($cache_file)) {

                $gmdate_mod = gmdate("D, d M Y H:i:s", filemtime($cache_file));

                if(! strstr($gmdate_mod, "GMT")) {
                    $gmdate_mod .= " GMT";
                }

                if (isset($_SERVER["HTTP_IF_MODIFIED_SINCE"])) {

                    // check for updates
                    $if_modified_since = preg_replace("/;.*$/", "", $_SERVER["HTTP_IF_MODIFIED_SINCE"]);

                    if ($if_modified_since == $gmdate_mod) {
                        header("HTTP/1.1 304 Not Modified");
                        exit;
                    }

                }

                $fileSize = filesize($cache_file);

                // send headers then display image
                header("Content-Type: image/png");
                header("Accept-Ranges: bytes");
                header("Last-Modified: " . $gmdate_mod);
                header("Content-Length: " . $fileSize);
                header("Cache-Control: max-age=9999, must-revalidate");
                header("Expires: " . $gmdate_mod);

                readfile($cache_file);

                exit;

            }

        }

/**
 * check to if the url is valid or not
 */
        function IMG_FILTER_valid_extension ($ext) {

            if (preg_match("/jpg|jpeg|png|gif/i", $ext)) {
                return TRUE;
            } else {
                return FALSE;
            }

        }

?>
0
0
分享到:
评论

相关推荐

    php gd等比例缩放压缩图片函数_.docx

    ### PHP GD 库等比例缩放压缩图片函数详解 #### 概述 在Web开发中,图片处理是一项常见的任务,特别是在需要对用户上传的图片进行处理时。PHP 的 GD 库提供了一系列强大的图像处理功能,其中包括创建、绘制、编辑...

    图片处理类,包括图片缩放功能,验证码生成功能。

    这里的“图片处理类”通常指的是一个程序库或类集,它们提供了对图像进行操作的功能,如图片的缩放和验证码生成。让我们深入探讨这两个主要功能。 **图片缩放功能** 图片缩放是图片处理中的基本操作,它允许我们...

    php借助gd库各种处理图片

    通过GD库,我们可以实现图片的创建、打开、保存、缩放、裁剪、旋转、水印添加、颜色处理等多种功能,为网站开发中的动态图像处理提供了强大支持。 二、安装与启用GD库 在PHP环境中,GD库通常是默认安装的。但若未...

    php gd等比例缩放压缩图片函数

    总的来说,文章主要介绍了如何使用PHP GD库对图片进行等比例缩放和压缩处理,提供了一个具体的函数实现,并简要介绍了GD库中常用的函数。这些知识对于进行Web开发和图像处理的程序员来说非常重要,能够帮助他们更...

    php缩略图php图片缩放php图片压缩

    本文将深入探讨如何使用PHP的GD库来创建缩略图、缩放图片以及进行图片压缩。 首先,GD库是PHP的一个内置图像处理库,提供了丰富的函数来处理各种图像格式,如JPEG、PNG、GIF等。通过GD库,我们可以实现以下功能: ...

    javascript+asp图片缩放剪切

    对于图片缩放,可以使用GDI+(Graphics Device Interface Plus)库,它提供了丰富的图形处理功能。首先,需要读取上传的图片文件,然后创建一个GDI+的图像对象,通过设置图像的宽度和高度来实现缩放。如果要进行剪切...

    Lua调用gd库

    **Lua-GD** 是一个绑定库,它将 `gd` 函数导出到 Lua 编程语言中,使得开发者可以在 Lua 中使用 `gd` 功能。这个 API 并不是简单地被复制过来,而是经过了一定的改造,使其更符合 Lua 开发者的使用习惯。 需要注意...

    PHP等比例缩放图片计算以及上传函数

    下面我们将详细讲解如何实现这个功能,主要关注两个函数:一个用于计算等比例缩放后的图片尺寸,另一个则用于实际的图片上传和处理。 首先,我们需要了解计算等比例缩放尺寸的原理。假设我们有一个原始图片,其宽度...

    PHP图片处理之使用imagecopyresampled函数实现图片缩放例子

    利用GD库,开发者可以轻松地对图片进行各种操作,包括缩放、裁剪等。在这个过程中,imagecopyresampled函数提供了一种高质量的图片缩放方法。 imagecopyresampled函数是PHP中GD图像处理库的一个函数,专门用于在...

    php 图片缩放 upfiles

    使用GD库可以方便地进行图片的缩放处理。首先创建原图的对象,然后使用`ImageCreateTrueColor`和`ImageCopyResized`函数创建缩略图: ```php $src_image = ImageCreateFromJPEG($uploadfile); $srcW = ImageSX($src_...

    php 自动等比例缩放图片 空余部分留空

    5. **复制并缩放图片**:使用`imagecopyresampled()`函数将原图复制到新的图像资源上,这个函数会进行等比例缩放。 6. **处理空余部分**:如果目标尺寸小于原图,那么缩放后的图片周围可能会有空余部分。这时,我们...

    flash 真实图片缩放和裁剪

    GD库提供了基本的图像处理函数,如imagecopyresampled用于高质量的图像缩放,而imagecrop用于裁剪图像。 Imagagick则是一个更强大的图像处理库,它支持更多的图像格式和高级操作。 example.php可能是一个演示如何...

    gd包zl.zip

    GD库的应用场景广泛,比如生成图表、图片水印、验证码、图像缩略图等。在实际开发中,我们可以结合PHP的其他功能,如数据库操作,实现更复杂的图像处理需求。 综上所述,"gd包zl.zip"可能是为了帮助开发者便捷地...

    php实现图片缩放功能类

    实现图片缩放功能对于现代Web开发来说是基本要求之一,掌握如何使用PHP的GD库进行图片处理可以大幅提升网站的用户体验和页面性能。希望本文的介绍能够帮助你理解如何使用PHP来处理图片的缩放问题,并在实际项目中...

    PHP GD库相关图像生成和处理函数小结

    下面我们将深入探讨GD库的一些关键函数,按照其主要功能进行分类。 1. **图像生成** - `imageCreate`:这个函数用于创建基于调色板的图像,通常适用于生成256色的GIF图像。 - `imageCreateTrueColor`:此函数创建...

    gd-2.0.35.tar.gz

    在实际应用中,GD库常与其他PHP框架和库结合使用,例如Laravel框架的图片处理组件,或者WordPress的插件等。GD库的高效性能使得它在大量用户访问的网站中也能保持良好的响应速度,是许多Web开发者首选的图像处理工具...

    PHP基于GD库实现的生成图片缩略图函数示例

    利用PHP的GD库,开发者可以很容易地对图片进行缩放、裁剪等操作。 根据提供的文件内容,我们可以总结出以下知识点: 1. PHP GD库的基本概念:GD库是PHP的一部分,专门用于处理图像。它提供了创建、修改图像以及...

    PHP等比例缩放上传图片

    接下来,我们创建了一个目标尺寸的图像资源,并使用`imagecopyresampled()`函数对原图进行等比例缩放。最后,我们输出或保存了新图片。 这个过程中的关键步骤包括: 1. 获取原图尺寸:`getimagesize()`函数。 2. ...

    PHP自定义图片缩放函数实现等比例不失真缩放的方法

    3. GD库:PHP的GD库提供了处理图片的各种功能,包括创建新图片、复制图片、缩放图片等。 4. 图片大小调整函数:在GD库中,`imagecopyresampled()`和`imagecopyresized()`是两个重要的函数。`imagecopyresampled()`...

Global site tag (gtag.js) - Google Analytics