控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Your Name 4a7af99f81 first commit 7ヶ月前
..
src first commit 7ヶ月前
tests first commit 7ヶ月前
.gitignore first commit 7ヶ月前
.travis.yml first commit 7ヶ月前
LICENSE first commit 7ヶ月前
README.md first commit 7ヶ月前
composer.json first commit 7ヶ月前
phpunit.xml first commit 7ヶ月前

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