hldyun/yun-image

The ThinkPHP5 Image Package

1.0 2017-07-30 15:01 UTC

This package is not auto-updated.

Last update: 2024-05-07 15:29:35 UTC


README

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

特别说明

修改至topthink/think-image 扩展 将发生错误时抛出异常,改为返回错误信息,然后调用时根据错误信息进行下一步处理,以免造成页面显示异常错误无法正常访问!!!

安装

composer require topthink/think-image

使用

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


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