控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Your Name 4a7af99f81 first commit 11 个月前
..
src first commit 11 个月前
tests first commit 11 个月前
.gitignore first commit 11 个月前
.travis.yml first commit 11 个月前
LICENSE first commit 11 个月前
README.md first commit 11 个月前
composer.json first commit 11 个月前
phpunit.xml first commit 11 个月前

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