shirne/think-image

The ThinkPHP5 Image Package

Installs: 113

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 37

pkg:composer/shirne/think-image

1.0.8 2022-09-25 04:03 UTC

This package is auto-updated.

Last update: 2025-09-25 11:08:20 UTC


README

Build Status Coverage Status Downloads Releases Releases Downloads Packagist Status Packagist Downloads

安装

composer require shirne/think-image

使用

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


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