jmluang/think-image

The ThinkPHP5 Image Package

Installs: 28

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 36

Open Issues: 0

pkg:composer/jmluang/think-image

v1.0.11 2020-10-10 07:26 UTC

This package is auto-updated.

Last update: 2025-11-10 18:26:26 UTC


README

Downloads Releases Packagist Status Packagist Downloads

安装

composer require jmluang/think-image

使用

$image = \think\Image::open('./image.jpg');
或者
$image = \think\Image::open(request()->file('image'));


$image->crop(...)
    ->thumb(...)
    ->water(...)
    ->text(....)
    ->save(..);