PHP配合nginx动态生成缩略图

对于一些门户网站来说,经常需要在不同的场合使用不同的缩略图。如果预先不知道需要生成的缩略图的尺寸情况下,我们可以先使用nginx进行url判断,如果图片不存在则把请求转发到php脚本进行缩略图生成处理,然后显示出来。

本文需要完全的任务如下,

  1. 根据请求生成固定宽高的缩略图,并存储到又拍服务器
  2. 根据请求生成固定宽度的缩略图,并存储到又拍服务器
  3. 图像生成一次之后,以后可直接调用

server {
    listen        80;
    server_name www. example. com;
    index index. php;
    root   /home /wwwroot /www. example. com;

     include other. conf;

    location ~  /. svn  {
        deny all;
     }

    location ~ . *\. (php |php5 )?$  {
        try_files  $uri =  404;
        fastcgi_pass  unix: /tmp /php -cgi. sock;
        fastcgi_index index. php;
         include fcgi. conf;
     }

    location  /  {
         if  (! -$request_filename ) {
            rewrite ^ (. * )/index. php?s=$1 last; 
         }
     }

    location ~ . *\. (gif |jpg |jpeg |png |bmp |swf |ico ){
        location ~ *  /resize / (. + ){
            proxy_pass http: //www. example. com /?m=Api &a=resize &s=$1 &args;
             break;
         }
        expires      max;
     }

    location ~ . *\. (js |css )?$  {
        expires     30d;
     }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值