zxhxx 6fcb8dbd6d 1 %!s(int64=2) %!d(string=hai) anos
..
src 6fcb8dbd6d 1 %!s(int64=2) %!d(string=hai) anos
tests 6fcb8dbd6d 1 %!s(int64=2) %!d(string=hai) anos
.gitignore 6fcb8dbd6d 1 %!s(int64=2) %!d(string=hai) anos
.travis.yml 6fcb8dbd6d 1 %!s(int64=2) %!d(string=hai) anos
LICENSE 6fcb8dbd6d 1 %!s(int64=2) %!d(string=hai) anos
README.md 6fcb8dbd6d 1 %!s(int64=2) %!d(string=hai) anos
composer.json 6fcb8dbd6d 1 %!s(int64=2) %!d(string=hai) anos
phpunit.xml 6fcb8dbd6d 1 %!s(int64=2) %!d(string=hai) anos

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(..);