An open API service indexing awesome lists of open source software.

https://github.com/klevze/thumb

Simple thumbnail generator for Laravel
https://github.com/klevze/thumb

gif jpg laravel php png thumb thumbnail webp

Last synced: 5 months ago
JSON representation

Simple thumbnail generator for Laravel

Awesome Lists containing this project

README

          

# Thumb
##simple thumbnail generator for Laravel

- Generates Thumbnail (image) from a given image file (jpg, png, gif, webp)
- This uses GD.

[View on Packagist](https://packagist.org/packages/klevze/thumb)

## Installation

`composer require klevze/thumb`

## How to use

```php
use Thumb;

Thumb::make($width, $source_image_name, $output_image_name, $quality);

```