nginx image_filter模組

wang_0720發表於2013-11-22
nginx有個動態生成圖片的模組,每次訪問的時候根據請求的尺寸動態生成圖片,生成的圖片不儲存在磁碟中,網站訪問量不大的情況下可以嘗試。下面介紹該模組的新增配置方法。
在nginx中用/usr/local/nginx/sbin/nginx -V 命令檢視該模組是否已經編譯了。
root@node1 nginx]# /usr/local/nginx/sbin/nginx -V
nginx version: nginx/1.4.3
built by gcc 4.1.2 20080704 (Red Hat 4.1.2-51)
TLS SNI support disabled
configure arguments: --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/usr/local/pcre/lib/ --with-http_image_filter_module
有了--with-http_image_filter_module引數,說明該模組已經有了,如果沒有,就要重新編譯。
對圖片的裁剪配置
location  ~* /images/(.*)_([\d]+)x([\d]+).(jpg|png|gif|jpeg)$ {
                root /usr/local/nginx/html;
                set $img_name $1;
                set $img_width $2;
                set $img_height $3;
                if ( !-e $document_root/images/$img_name.jpg ) {
                        return 404;
                }
                rewrite ^/images/(.*)_(.*)x(.*).jpg$ /images/$img_name.jpg break;
                image_filter resize $img_width $img_height;
                image_filter_buffer 5M;
                image_filter_jpeg_quality 95;
                image_filter_transparency on;
         }
resize - 根據設定按比例得減小影像
image_filter_buffer - 設定圖片最大尺寸,超過設定值會返回錯誤頁面。
image_filter_jpeg_quality 設定jpeg圖片的壓縮質量比例
image_filter_transparency 用來禁用gif和palette-based的png圖片的透明度,以此來提高圖片質量
由於該模組不產生真實圖片,所有訪問量大時佔用cpu會比較高,建議前端加cache。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/27181165/viewspace-777344/,如需轉載,請註明出處,否則將追究法律責任。

相關文章