睿能科技
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
peijunlei 4fc04395c3 refactor(single_index.html): 移除多余的SVG图标代码,优化页面结构 1 week ago
..
src init代码 3 weeks ago
tests init代码 3 weeks ago
.gitignore init代码 3 weeks ago
.travis.yml init代码 3 weeks ago
LICENSE init代码 3 weeks ago
README.md init代码 3 weeks ago
composer.json init代码 3 weeks ago
phpunit.xml init代码 3 weeks ago

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