felixyin cc37d3cd14 first commit il y a 9 mois
..
src cc37d3cd14 first commit il y a 9 mois
tests cc37d3cd14 first commit il y a 9 mois
.gitignore cc37d3cd14 first commit il y a 9 mois
.travis.yml cc37d3cd14 first commit il y a 9 mois
LICENSE cc37d3cd14 first commit il y a 9 mois
README.md cc37d3cd14 first commit il y a 9 mois
composer.json cc37d3cd14 first commit il y a 9 mois
phpunit.xml cc37d3cd14 first commit il y a 9 mois

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