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
- Host: GitHub
- URL: https://github.com/php-lsys/image
- Owner: php-lsys
- Created: 2018-09-09T13:02:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-03T14:33:27.000Z (almost 6 years ago)
- Last Synced: 2025-07-31T14:42:51.007Z (11 months ago)
- Language: PHP
- Size: 49.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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');
```