Nginx配合php實現產生即時縮圖功能_nginx

來源:互聯網
上載者:User

在做自動靜態化的時候,突然想到下面這個情境,也給出瞭解決方法。親,真的很實用,耐心看下去。

當我從後台上傳一個截圖之後,480*800的截圖之後,當時就沒有壓縮出320*480的小縮圖。好吧,伺服器輪詢一下,全部產生出320*480的圖片。

那下一次呢,又有160*240的圖片了,又輪詢嗎,費時費力,還不能馬上就得到小圖。這個時候,我們就要開始抱怨了,怎麼要這麼多種圖片啊,設計師,你就不能老早就想好要哪些圖片嗎?

其實,nginx是一個強大的反向 Proxy伺服器,通過它的rewrite模組,我們可以實現自動產生縮圖,也不用輪詢資料庫了。產品設計,要什麼尺寸的,用戶端直接通過某種規則訪問就是了,我馬上就產生給你。
而且,後台上傳的時候,只要儲存一張最大的圖片就ok了。

這樣的話,需要其他尺寸的圖片,僅僅修改用戶端的訪問方式即可。

Nginx配置:

複製代碼 代碼如下:

#假設,伺服器上面有一個檔案:abc.jpg,通過http://filefs.domain.com/file/abc.jpg能夠訪問到原圖。其#實一般的,我們在資料庫裡面也就儲存了“/file/abc.jpg”這部分內容。
#現在,我們要實現通過http://filefs.domain.com/file/abc.jpg.w320.jpg由伺服器自動產生#abc.jpg.w320.jpg(w320,320px的寬度)這個縮圖。並返回圖片資料。
#要滿足以下兩個條件:
#   1.如果abc.jpg.w320.jpg存在,則不重新產生圖片
#   2.如果不存在,則在同一次的請求中,返回圖片資料,和儲存圖片檔案到伺服器。
 
 
server {
    listen       80;
    server_name  filefs.domain.com;
    
    root /var/www/http/filefs.domain.com;
    location / {
        index  index.html index.htm;
    }
    
    location ~ \.(png|jpg|jpeg|gif)$ {
        #如果檔案不存在,則rewrite到產生圖片的指令檔autoimg.php
        if (!-f $request_filename) {
            rewrite ^/.*$ /autoimg.php;
            expires max;
        }
        #如果檔案存在,則設定到期時間,關閉訪問日誌
        if ( -f $request_filename ) {
            expires max;
            access_log off;
        }
    }
    
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
    
    location ~ autoimg.php$ {#安全性考慮,檔案伺服器,只這個指令檔的範圍提交給php處理
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /var/www/http/filefs.domain.com$fastcgi_script_name;
        include        /usr/local/nginx/conf/fastcgi_params;
    }
}

php產生圖片檔案代碼:

複製代碼 代碼如下:

<?php
    $file = $_SERVER ['REQUEST_URI'];//請求字串 /file/abc.jpg.w320.jpg
    $desfile = $_SERVER ['DOCUMENT_ROOT'] . $file; //目標目標路徑 /var/www/http/file/abc.jpg.w320.jpg
    $dirname = dirname ( $desfile ) . "/";
    $filename = basename ( $desfile );
    if (preg_match ( "/([^\.]+\.(png|jpg|jpeg|gif))\.w([\d]+)\.(jpg)/i", $filename, $m )) {
        $srcfile = $dirname . $m [1];
        $width = $m [3];                    //匹配出輸出檔案寬度
        if (in_array ( $width, array (      //只產生202和320寬度的檔案
                202,
                320
        ) ) && file_exists ( $srcfile )) {  //而且檔案不存在
            thumbnail ( $srcfile, $desfile, $width );
        }
    }
    
    /**
     * 產生縮圖
     *
     * @param 源 $src           
     * @param 縮放後的寬頻 $width        
     *
     */
    function thumbnail($src, $des, $width) {
        ob_start ();//開始截獲輸出資料流
        $imageinfos = getimagesize ( $src );
        $ext = strtolower ( pathinfo ( $src, 4 ) );
        if ($imageinfos [2] == 1) {
            $im = imagecreatefromgif ( $src );
        } elseif ($imageinfos [2] == 2) {
            $im = imagecreatefromjpeg ( $src );
        } elseif ($imageinfos [2] == 3) {
            $im = imagecreatefrompng ( $src );
        }
        
        if (isset ( $im )) {
            $height = $imageinfos [1] * $width / $imageinfos [0];
            $dst_img = ImageCreateTrueColor ( $width, $height );
            
            imagesavealpha ( $dst_img, true );
            $trans_colour = imagecolorallocatealpha ( $dst_img, 0, 0, 0, 127 );
            imagefill ( $dst_img, 0, 0, $trans_colour );
            
            imagecopyresampled ( $dst_img, $im, 0, 0, 0, 0, $width, $height, $imageinfos [0], $imageinfos [1] );
            
            header ( 'content-type:image/jpg' );
            imagejpeg ( $dst_img, null, 90 );//輸出檔案流,90--壓縮品質,100表示最高品質。
            
            @imagedestroy ( $im );
            @imagedestroy ( $dst_img );
        } else {
            echo @file_get_contents ( $src );
        }
        $content = ob_get_contents ();//擷取輸出資料流
        ob_end_flush ();//輸出資料流到網頁,保證第一次請求也有圖片資料放回
        @file_put_contents ( $des, $content );//儲存檔案
    }
?>

效果圖:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.