cy23/think-image

The ThinkPHP8 Image Package

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

1.0.1 2023-10-16 03:45 UTC

This package is auto-updated.

Last update: 2025-08-27 08:31:55 UTC


README

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

安装

composer require cy23/think-image

使用

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


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