Kirin 4d67c98a58 1 1 year ago
..
src 4d67c98a58 1 1 year ago
tests 4d67c98a58 1 1 year ago
.gitignore 4d67c98a58 1 1 year ago
.travis.yml 4d67c98a58 1 1 year ago
LICENSE 4d67c98a58 1 1 year ago
README.md 4d67c98a58 1 1 year ago
composer.json 4d67c98a58 1 1 year ago
phpunit.xml 4d67c98a58 1 1 year ago

README.md

The ThinkPHP5 Image Package

Build Status Coverage Status Downloads Releases Releases Downloads Packagist Status Packagist Downloads

安装

composer require topthink/think-image

使用

$image = \think\Image::open('./image.jpg');
或者
$image = \think\Image::open(request()->file('image'));


$image->crop(...)
    ->thumb(...)
    ->water(...)
    ->text(....)
    ->save(..);