🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
前提:需要安装gd-devel yum install gd-devel 编译nginx的时候,需要--with-http_image_filter_module 常用参数: image_filter resize width height; 按比例减少图像到指定大小 mage_filter_buffer 10M; #设置读取图像缓冲的最大大小,超过则415错误。 案例: location ~* (.*\.(jpg|gif|png))!(.*)!(.*)$ { set $width $3; set $height $4; rewrite "(.*\.(jpg|gif|png))(.*)$" $1; } location ~* /images/.*\.(jpg|gif|png)$ { root /application/bbs/; image_filter resize $width $height; } 访问: http://webip/images/2.gif!100!100