https://github.com/beeyev/thumbor-php
PHP implementation of URL generator for Thumbor
https://github.com/beeyev/thumbor-php
laravel laravel-package thumbor
Last synced: 2 months ago
JSON representation
PHP implementation of URL generator for Thumbor
- Host: GitHub
- URL: https://github.com/beeyev/thumbor-php
- Owner: beeyev
- License: mit
- Created: 2022-06-24T16:09:29.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-05T18:34:32.000Z (8 months ago)
- Last Synced: 2024-10-30T21:38:02.475Z (7 months ago)
- Topics: laravel, laravel-package, thumbor
- Language: PHP
- Homepage:
- Size: 75.2 KB
- Stars: 27
- Watchers: 4
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-thumbor - GitHub - 66% open</span> · <span title="Last update timestamp on package manager" alt="Last update timestamp on package manager">⏱️ 09.09.2024</span>): (PHP Integration & URL Generation)
README
# Thumbor PHP
[](https://packagist.org/packages/beeyev/thumbor-php)
[](https://packagist.org/packages/beeyev/thumbor-php)
[](https://packagist.org/packages/beeyev/thumbor-php)
PHP implementation of URL generator for [Thumbor](http://www.thumbor.org/)
> 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: `7.0 - 8.2`
## Installation
Require this package with composer using the following command:
```bash
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.
```bash
php artisan vendor:publish --provider="Beeyev\Thumbor\Adapters\Laravel\ThumborServiceProvider" --tag=config
```## Usage examples
#### Laravel using dependency injection
```php
use Beeyev\Thumbor\Thumbor;public function someMethod(Thumbor $thumbor)
{
$result = $thumbor->resizeOrFit(200,500)->get('http://seriouscat.com/serious_cat.jpg');
}
```#### Laravel using facade
```php
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
```php
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](https://github.com/beeyev/thumbor-php/issues).## License
The MIT License (MIT). Please see [License File](https://github.com/beeyev/thumbor-php/raw/master/LICENSE.md) for more information.---
If you love this project, please consider giving me a ⭐