Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Your Name 2e7a963364 first commit vor 10 Monaten
..
src first commit vor 10 Monaten
tests first commit vor 10 Monaten
.gitignore first commit vor 10 Monaten
.travis.yml first commit vor 10 Monaten
LICENSE first commit vor 10 Monaten
README.md first commit vor 10 Monaten
composer.json first commit vor 10 Monaten
phpunit.xml first commit vor 10 Monaten

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