您好,登录后才能下订单哦!
一、安装LuaJIT。
wget http://luajit.org/download/LuaJIT-2.0.5.tar.gz
tar xf LuaJIT-2.0.5.tar.gz
cd LuaJIT-2.0.5
make
make install
设置环境变量,设置后不要切换控台,否则会失效。
export LUAJIT_LIB=/usr/local/lib
export LUAJIT_INC=/usr/local/include/luajit-2.0
做软链接,并加载模块
ln -s /usr/local/lib/libluajit-5.1.so.2 /usr/lib/libluajit-5.1.so.2
ldconfig
二、安装ImageMagick工具。
用yum装就行了,挺方便的。
yum install -y ImageMagick
三、下载nginx以及ngx_devel_kit和nginx_lua_module模块,解压到指定路径。如果本机已装有nginx请忽略下载安装nginx。
wget http://nginx.org/download/nginx-1.12.0.tar.gz
wget https://github.com/simpl/ngx_devel_kit/archive/v0.3.0.tar.gz
wget https://github.com/openresty/lua-nginx-module/archive/v0.10.9rc5.tar.gz
tar xf nginx-1.12.0.tar.gz && tar xf v0.3.0.tar.gz && tar xf v0.10.9rc5.tar.gz
四、编译安装nginx,如果本机已装有nginx请忽略安装,但需要重新编译,然后将老nginx执行文件备份,并把新的弄过去。
./configure --prefix=/usr/local/nginx \
--add-module=(你的解压路径)/ngx_devel_kit-0.3.0 \
--add-module=(你的解压路径)/lua-nginx-module-0.10.9rc5
(本机如果已经装了nginx的,要把你nginx曾经编译的参数也加上)
make
没有装nginx的,直接make install装了的,参考https://cache.yisu.com/upload/information/20200309/32/42291.com$' {
root /opt/qikanjpg;
}
location ~ '/pdgpath/([0-9a-z_]+)\@([0-9]+)x([0-9]+)\.(gif|jpg|png|jpeg)$' {
root /opt/qikanjpg;
set $p_w_picpath_root '/opt/qikanjpg/pdgpath';
set $fileName $1;
set $width $2;
set $height $3;
set $origin $p_w_picpath_root/$fileName.jpg;
set $file_1 $p_w_picpath_root/${fileName}@${width}x${height}.jpg;
if (!-f $file_1) {
rewrite_by_lua '
local comd = "convert -sample "..ngx.var.width.."x"..ngx.var.height.." "..ngx.var.origin.." "..ngx.var.file_1;
os.execute(comd);
';
}
}
location ~ '/pdgpath/([0-9a-z_]+)\@([0-9]+)x([0-9]+)_f\.(gif|jpg|png|jpeg)$' {
root /opt/qikanjpg;
set $p_w_picpath_root '/opt/qikanjpg/pdgpath';
set $fileName $1;
set $width $2;
set $height $3;
set $origin $p_w_picpath_root/$fileName.jpg;
set $file $p_w_picpath_root/${fileName}@${width}x${height}_f.jpg;
if (!-f $file) {
rewrite_by_lua '
local command = "convert -strip -quality 80% -resize "..ngx.var.width.."x"..ngx.var.height.."^ -gravity center -crop "..ngx.var.width.."x"..ngx.var.height.."+0+0 "..ngx.var.origin.." "..ngx.var.file;
os.execute(command);
';
}
}
七、访问图片,进行测试。
以上面的配置文件,在/opt/qikanjpg/pdgpath/放一个1.jpg。
原图http://(your_server_ip):(your_server_port)/pdgpath/1.jpg
按宽和高较小值等比缩放原图http://(your_server_ip):(your_server_port)/pdgpath/1@宽x高.jpg
按宽和高较大值等比缩放原图再从中间切一次宽和高那么大一个区域http://(your_server_ip):(your_server_port)/pdgpath/1@宽x高_f.jpg
更多的切割功能,请convert --help查看自行琢磨,然后添加到local command =里面就行了。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。