moufer/think-image

The ThinkPHP5 Image Package

Maintainers

Package info

github.com/moufer/think-image

pkg:composer/moufer/think-image

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 0

dev-master 2023-08-17 15:20 UTC

This package is auto-updated.

Last update: 2026-04-17 21:48:33 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(..);