hldyun/yun-image

ThinkPHP5 图片包

1.0 2017-07-30 15:01 UTC

This package is not auto-updated.

Last update: 2024-09-24 17:29:20 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(..);