💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
前提:需要安装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