hrjy d80da73038 commit hace 2 años
..
src d80da73038 commit hace 2 años
tests d80da73038 commit hace 2 años
.gitignore d80da73038 commit hace 2 años
.travis.yml d80da73038 commit hace 2 años
LICENSE d80da73038 commit hace 2 años
README.md d80da73038 commit hace 2 años
composer.json d80da73038 commit hace 2 años
phpunit.xml d80da73038 commit hace 2 años

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