zxhxx e38100db7f 1 1 月之前
..
src e38100db7f 1 1 月之前
tests e38100db7f 1 1 月之前
.gitignore e38100db7f 1 1 月之前
.travis.yml e38100db7f 1 1 月之前
LICENSE e38100db7f 1 1 月之前
README.md e38100db7f 1 1 月之前
composer.json e38100db7f 1 1 月之前
phpunit.xml e38100db7f 1 1 月之前

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