hldyun / yun-image
The ThinkPHP5 Image Package
1.0
2017-07-30 15:01 UTC
Requires
- ext-gd: *
Requires (Dev)
- phpunit/phpunit: 4.8.*
- topthink/framework: ^5.0
This package is not auto-updated.
Last update: 2025-03-25 19:43:13 UTC
README
特别说明
修改至topthink/think-image 扩展 将发生错误时抛出异常,改为返回错误信息,然后调用时根据错误信息进行下一步处理,以免造成页面显示异常错误无法正常访问!!!
安装
composer require topthink/think-image
使用
$image = \think\Image::open('./image.jpg');
或者
$image = \think\Image::open(request()->file('image'));
$image->crop(...)
->thumb(...)
->water(...)
->text(....)
->save(..);