topthink/think-image

The ThinkPHP5 Image Package

Installs: 409 312

Dependents: 42

Suggesters: 0

Security: 0

Stars: 62

Watchers: 6

Forks: 37

Open Issues: 10

pkg:composer/topthink/think-image

v1.0.8 2024-08-07 10:06 UTC

This package is auto-updated.

Last update: 2025-10-08 02:10:34 UTC


README

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