cyzonetech/think-image

The ThinkPHP5 Image Package

v1.0.8.1 2020-09-17 03:41 UTC

This package is not auto-updated.

Last update: 2024-03-14 20:11:52 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(..);