承接 beeyev/thumbor-php 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

beeyev/thumbor-php

Composer 安装命令:

composer require beeyev/thumbor-php

包简介

Thumbor library for PHP

关键字:

README 文档

README

Latest Version on Packagist Supported PHP Versions Packagist Downloads

beeyev_thumbor-php

PHP implementation of URL generator for Thumbor

This package has laravel support, and brings its conveniences like Facade and Service Provider.
At the same time, it was made to be filly functional as framework-agnostic.

Supported PHP versions: 8.0 - 8.5

Installation

Require this package with composer using the following command:

composer require beeyev/thumbor-php

Laravel

This package will be automatically registered using Laravel auto-discovery mechanism.
Publish the config file of this package with this command. It will generate config file config/thumbor.php, look at this file to set the required parameters.

php artisan vendor:publish --provider="Beeyev\Thumbor\Adapters\Laravel\ThumborServiceProvider" --tag=config

Usage examples

Laravel using dependency injection

use Beeyev\Thumbor\Thumbor;

public function someMethod(Thumbor $thumbor)
{
    $result = $thumbor->resizeOrFit(200,500)->get('http://seriouscat.com/serious_cat.jpg');
}

Laravel using facade

use Beeyev\Thumbor\Manipulations\Fit;
use Beeyev\Thumbor\Manipulations\Trim;

public function someMethod()
{
    $result = \Thumbor::addFilter('blur', 3)
        ->resizeOrFit(500, 300, Fit::FIT_IN)
        ->trim(Trim::BOTTOM_RIGHT)
        ->get('http://seriouscat.com/serious_cat.jpg');
}

Some more framework-agnostic examples

use Beeyev\Thumbor\Thumbor;
use Beeyev\Thumbor\Manipulations\Resize;
use Beeyev\Thumbor\Manipulations\Filter;

public function someMethod()
{
    $thumbor = new Thumbor('https://thumbor.findtheinvisiblecow.com/', 'secretKey555');
    $thumbor->addFilter(Filter::STRIP_EXIF);
    $thumbor->addFilter(Filter::BLUR, 1);
    $thumbor->resizeOrFit(500, Resize::ORIG);
    $thumbor->smartCrop();
    $thumbor->imageUrl('http://seriouscat.com/serious_cat.jpg');

    return $thumbor->get();
}

Issues

Bug reports and feature requests can be submitted on the Github Issue Tracker.

License

The MIT License (MIT). Please see License File for more information.

If you love this project, please consider giving me a ⭐

统计信息

  • 总下载量: 59.29k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 29
  • 点击次数: 14
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 29
  • Watchers: 3
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-06-26

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固