An open API service indexing awesome lists of open source software.

https://github.com/php-lsys/image

lsys module:image install: composer require lsys/image
https://github.com/php-lsys/image

Last synced: 6 months ago
JSON representation

lsys module:image install: composer require lsys/image

Awesome Lists containing this project

README

          

# 实现对图片的简单操作

使用示例:
```
use LSYS\Image;
//压缩图片
Image::factory('test.png')->resize(100)->save();
//裁剪图片
Image::factory('test.png')->crop($y=100,$w=100,$x=1,$y=1)->save('./crop.png');
```