k1low / imgin
图片处理目录
v0.0.5
2015-09-17 02:59 UTC
Requires
- php: >=5.3.2
- aws/aws-sdk-php: 2.*
- composer/installers: *
- doctrine/cache: 1.*
- imagine/imagine: *
- nategood/commando: *
README
安装
$ composer -sdev create-project k1low/imgin ./app/webroot/img ... Writing lock file Generating autoload files Do you want to remove the existing VCS (.git, .svn..) history? [Y,n]? Y
使用(文件)
原始图片访问
/img/foo/bar/large.jpg
调整大小后的缓存图片访问
/img/100x120/foo/bar/large.jpg
清除缓存图片
$ php app/webroot/img/imgin.php clearcache /path/to/app/webroot/img/foo/bar/large.jpg
清除所有缓存图片
$ php app/webroot/img/imgin.php clearcache --all
使用(S3)
原始图片
https://s3-ap-northeast-1.amazonaws.com/s3-bucket-name/foo/bar/large.jpg
原始 "缓存" 图片访问
/img/foo/bar/large.jpg
调整大小后的缓存图片访问
/img/100x120/foo/bar/large.jpg
清除缓存图片
$ php app/webroot/img/imgin.php clearcache /path/to/app/webroot/img/foo/bar/large.jpg
清除所有缓存图片
待办事项
要求
许可
在MIT许可证下