topthink/think-image

The ThinkPHP5 Image Package

Maintainers

Package info

github.com/top-think/think-image

pkg:composer/topthink/think-image

Statistics

Installs: 432 809

Dependents: 41

Suggesters: 0

Stars: 62

Open Issues: 10

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

This package is auto-updated.

Last update: 2026-02-08 02:46:49 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(..);