Pro/vendor/topthink/think-image
2026-01-28 15:54:52 +08:00
..
src add 2026-01-28 15:54:52 +08:00
tests add 2026-01-28 15:54:52 +08:00
.gitignore add 2026-01-28 15:54:52 +08:00
.travis.yml add 2026-01-28 15:54:52 +08:00
composer.json add 2026-01-28 15:54:52 +08:00
LICENSE add 2026-01-28 15:54:52 +08:00
phpunit.xml add 2026-01-28 15:54:52 +08:00
README.md add 2026-01-28 15:54:52 +08:00

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