Nginx国产缩略图模块 ngx_image_thumb

关于

ngx_image_thumb是nginx中用来生成缩略图的模块,生存缩略图的方法很多,之前也写过一篇 《nginx生成缩略图配置 - ttlsa教程系列之nginx》,在github上发现国人开发的一款模块,作者的文档写的很详细,我便照搬过来了。以后将做一个测试.

特性

本nginx模块主要功能是对请求的图片进行缩略/水印处理,支持文字水印和图片水印。支持自定义字体,文字大小,水印透明度,水印位置,判断原图是否是否大于指定尺寸才处理等等

1. 编译方法

实验环境:

[[email protected] ~]# cat /etc/redhat-release

CentOS release 6.6 (Final)

[[email protected] ~]# uname -m

x86_64

[[email protected] ~]# uname -a

Linux masterserver 2.6.32-504.el6.x86_64 #1 SMP Wed Oct 15 04:27:16 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

[[email protected] ~]#

# 请确保已经安装了gcc automake autoconf m4

[[email protected] ~]# yum install gd-devel pcre-devel libcurl-devel

[[email protected] ~]# cd /home/opuser/tools/

[[email protected] tools]# wget https://github.com/3078825/nginx-image/archive/master.zip [[email protected] tools]# ll master.zip

-rw-r--r-- 1 root root 14306 Mar 15 17:00 master.zip

[[email protected] tools]#

[[email protected] tools]# ll master.zip

-rw-r--r-- 1 root root 14306 Mar 15 17:00 master.zip

[[email protected] tools]# unzip master.zip 

Archive:  master.zip

ff2a0177fdec59828a88e2a05f0adb2a432e89a4

creating: ngx_image_thumb-master/

inflating: ngx_image_thumb-master/.gitignore

inflating: ngx_image_thumb-master/README.md

inflating: ngx_image_thumb-master/README_EN.md

inflating: ngx_image_thumb-master/config

inflating: ngx_image_thumb-master/ngx_http_image_module.c

[[email protected] tools]# ll

total 852

-rw-r--r-- 1 root root  14540 Oct 16 02:37 epel-release-6-8.noarch.rpm

-rw-r--r-- 1 root root  14306 Mar 15 17:00 master.zip

-rw-r--r-- 1 root root 828607 Apr 21  2015 nginx-1.7.10.tar.gz

drwxr-xr-x 2 root root   4096 Sep 23  2014 ngx_image_thumb-master

[[email protected] tools]#

#安装nginx加入模块ngx_image_thumb-master

[[email protected] tools]# tar xf nginx-1.7.10.tar.gz

[[email protected] tools]# cd nginx-1.7.10

[[email protected] nginx-1.7.10]# ./configure --add-module=../ngx_image_thumb-master/

[[email protected] nginx-1.7.10]# make && make install


#修改nginx配置文件

[[email protected] nginx-1.7.10]# vim /usr/local/nginx/conf/nginx.conf

location / {

root   html;

index  index.html index.htm;

#添加以下配置

image on;

image_output on;

}

#检查配置文件是否正确,然后启动nginx

[[email protected] nginx-1.7.10]# /usr/local/nginx/sbin/nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

[[email protected] nginx-1.7.10]# /usr/local/nginx/sbin/nginx

#模块ngx_image_thumb-master参介绍

image on/off 是否开启缩略图功能,默认关闭

image_backend on/off 是否开启镜像服务,当开启该功能时,请求目录不存在的图片(判断原图),将自动从镜像服务器地址下载原图

image_backend_server 镜像服务器地址

image_output on/off 是否不生成图片而直接处理后输出 默认off

image_jpeg_quality 75 生成JPEG图片的质量 默认值75

image_water on/off 是否开启水印功能

image_water_type 0/1 水印类型 0:图片水印 1:文字水印

image_water_min 300 300 图片宽度 300 高度 300 的情况才添加水印

image_water_pos 0-9 水印位置 默认值9 0为随机位置,1为顶端居左,2为顶端居中,3为顶端居右,4为中部居左,5为中部居中,6为中部居右,7为底端居左,8为底端居中,9为底端居右

image_water_file 水印文件(jpg/png/gif),绝对路径或者相对路径的水印图片

image_water_transparent 水印透明度,默认20

image_water_text 水印文字 "Power By Vampire"

image_water_font_size 水印大小 默认 5

image_water_font 文字水印字体文件路径

image_water_color 水印文字颜色,默认 #000000

#调用说明

这里假设你的nginx 访问地址为 http://10.0.0.10/

并在nginx网站根目录存在一个 pit.jpg 的图片

通过访问

http://10.0.0.10/pit.jpg!c300x200.jpg

其中 c 是生成图片缩略图的参数, 300 是生成缩略图的宽度 200 是生成缩略图的高度

一共可以生成四种不同类型的缩略图。

支持 jpeg / png / gif (Gif生成后变成静态图片)

C 参数按请求宽高比例从图片高度 10% 处开始截取图片,然后缩放/放大到指定尺寸( 图片缩略图大小等于请求的宽高 )

M 参数按请求宽高比例居中截图图片,然后缩放/放大到指定尺寸( 图片缩略图大小等于请求的宽高 )

T 参数按请求宽高比例按比例缩放/放大到指定尺寸( 图片缩略图大小可能小于请求的宽高 )

W 参数按请求宽高比例缩放/放大到指定尺寸,空白处填充白色背景颜色( 图片缩略图大小等于请求的宽高 )

5. 调用举例

http://10.0.0.10/pit.jpg!c300x300.jpg

http://10.0.0.10/pit.jpg!t300x300.jpg

http://10.0.0.10/pit.jpg!m300x300.jpg

http://10.0.0.10/pit.jpg!w300x300.jpg

6. 最后

这款模块的缩略图是实时生成的,如果你的网站流量比较大,势必会造成nginx服务器负载过高,针对这个问题,你可以参考我们运维生存时间之前写的几篇文章,分别为存硬盘和redis. 《nginx实时生成缩略图到硬盘上》《srcache_nginx+redis构建缓存系统》

参考文章

项目地址:https://github.com/3078825/nginx-image/

下一篇解决流量大造成nginx负载过高的问题

时间: 2024-10-15 04:57:50

Nginx国产缩略图模块 ngx_image_thumb的相关文章

Mac系统安装nginx+rtmp模块

1.安装命令 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 如果安装后, 想要卸载 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)" 2.安装nginx 先clone nginx项目到本地 brew t

Nginx的GeoIp模块的应用与使用

使用GeoIP模块的原因(Why):由于项目的需要,需要对不同城市访问的客户进行请求转发,eg: 当天津用户A访问www.XXXX.com的时候,Nginx把这个请求转发到天津的服务器以及天津的域名上去,浏览器自动跳转tj.XXXX.com 当广州用户B访问www.XXXX.com的时候,Nginx把这个请求转发到广州的服务器以及广州的域名上去,浏览器自动跳转gz.XXXX.com 使用GeoIP模块的目的(What):博主理解为两个层面,第一技术层级的,可以减轻某个服务器的负载,做到负载均衡的

nginx上传模块nginx_upload_module和nginx_uploadprogress_module模块进度显示,如何传递GET参数等。

ownload:http://www.grid.net.ru/nginx/download/nginx_upload_module-2.2.0.tar.gzconfigure and make : ./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module   --add-module=/data/software/lnmp1.

【Nginx】核心模块ngx_events_module

核心模块ngx_events_module是一个专门用于管理事件模块的模块.它的实现很简单,下面是该模块的定义: ngx_module_t ngx_events_module = { NGX_MODULE_V1, &ngx_events_module_ctx, /* module context */ ngx_events_commands, /* module directives */ NGX_CORE_MODULE, /* module type */ NULL, /* init mast

【Nginx】ngx_event_core_module模块

ngx_event_core_module模块属于事件模块,它是其它事件类模块的基础.它主要完成以下任务: 创建连接池 决定使用哪些事件驱动机制 初始化将要使用的事件模块 下面分析该模块的代码. ngx_event_core_module的ngx_command_t数组定义如下: /* ngx_event_core_module对7个配置项感兴趣 */ static ngx_command_t ngx_event_core_commands[] = { /* 一个worker进程的最大TCP连接

Nginx 配置 fastdfs-nginx-module 模块

上篇介绍了FastDFS的安装,这里主要是给NG安装fastdfs-nginx-module 模块,来完成FastDFS的上传与下载 安装 Nginx 和 fastdfs-nginx-module [[email protected] softwares]#wget -c https://nginx.org/download/nginx-1.10.1.tar.gz fastdfs-nginx-module 直接用附件中的,网上下载的貌似有很多很问题   [[email protected] so

nginx利用geo模块做限速白名单以及geo实现全局负载均衡的操作记录

geo指令使用ngx_http_geo_module模块提供的.默认情况下,nginx有加载这个模块,除非人为的 --without-http_geo_module.ngx_http_geo_module模块可以用来创建变量,其值依赖于客户端IP地址.geo指令语法: geo [$address] $variable { ... }默认值: -配置段: http定义从指定的变量获取客户端的IP地址.默认情况下,nginx从$remote_addr变量取得客户端IP地址,但也可以从其他变量获得.例

php5.5安装及phpmyadmin&nginx配置php模块

安装php5.5: 下载源地址:rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm rpm包安装:yum install php55w.x86_64 php55w-cli.x86_64 php55w-common.x86_64 php55w-gd.x86_64 php55w-ldap.x86_64 php55w-mbstring.x86_64 php55w-mcrypt.x86_64 php55w-mysql.x86_64 php55w-

nginx的upstream模块实现负载均衡

通过nginx搭建负载均衡,这里通过这个upstream模块来实现,在nginx.org的官网可以看到相应的模块 proxy模块也可以实现负载均衡. 第一.打开lamp和lnmp  两个web服务器 Nginx-proxy这台服务器安装nginx,负载均衡需要nginx 安装nginx1.6.2 tar -xf nginx-1.6.2.tar.gz ls cd nginx-1.6.2 useradd -s /sbin/nologin -M nginx ./configure --user=ngi