暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Your Name 2e7a963364 first commit 6 个月前
..
src first commit 6 个月前
tests first commit 6 个月前
.gitignore first commit 6 个月前
.travis.yml first commit 6 个月前
LICENSE first commit 6 个月前
README.md first commit 6 个月前
composer.json first commit 6 个月前
phpunit.xml first commit 6 个月前

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