PHPackages                             plutuss/gif-creator-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Image &amp; Media](/categories/media)
4. /
5. plutuss/gif-creator-laravel

ActiveLibrary[Image &amp; Media](/categories/media)

plutuss/gif-creator-laravel
===========================

Laravel GIF animation package - a wrapper for sybio/gif-creator. Easily create, manipulate, and store animated GIFs using Laravel storage and facades.

1.0.0(1y ago)0413↓16.7%MITPHP

Since Feb 11Pushed 1y ago1 watchersCompare

[ Source](https://github.com/plutuss/gif-creator)[ Packagist](https://packagist.org/packages/plutuss/gif-creator-laravel)[ Docs](https://github.com/Sybio/GifCreator)[ RSS](/packages/plutuss-gif-creator-laravel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)DependenciesVersions (3)Used By (0)

GifCreator Laravel Wrapper
==========================

[](#gifcreator-laravel-wrapper)

A Laravel wrapper for [sybio/gif-creator](https://github.com/Sybio/GifCreator), providing a convenient way to create GIF animations using the `GifCreator` facade and storage. This package does not restrict the standard approach from `sybio/gif-creator`.

Installation
------------

[](#installation)

Install the package via Composer:

```
composer require plutuss/gif-creator-laravel
```

After installation, if you are using Laravel &lt; 5.5, add the service provider and facade to `config/app.php`:

```
'providers' => [
    \Plutuss\Gif\Providers\GifCreatorServiceProvider::class,
],

'aliases' => [
    'GifCreator' =>  \Plutuss\Gif\Facades\GifCreator::class,
],
```

Usage
-----

[](#usage)

### Creating a GIF

[](#creating-a-gif)

```
use Plutuss\Gif\Facades\GifCreator;

$gif = GifCreator::storage('public') // You can specify a disk name
    ->durations([40, 80, 40, 20, 10])
    ->frames(['1.jpg', '2.jpg', '3.jpg'], 'images/') // Pass an array of file names and a path if different
    ->loop()
    ->makeGif();

// Retrieve binary GIF data
$gifData = $gif->getGif();

// Display GIF in the browser
$gif->show();

// Save GIF to the server with a specified path and filename
$gif->save('gif/', 'animated.gif');

            // or

// Save GIF to storage
Storage::disk('public')->put('animated.gif', $gifData);
```

Methods
-------

[](#methods)

- `storage(string $disk = null)` – Uses files from `storage`, allowing a specific disk name
- `durations(array $durations)` – Sets frame durations
- `frames(array $files, string $path = '')` – Loads frames from the specified path (pass an array of file names and a path if different)
- `loop(int $count = 0)` – Sets the loop count (default is infinite)
- `makeGif()` – Creates a GIF animation
- `getGif()` – Retrieves binary GIF data
- `show()` – Displays GIF in the browser
- `save(string $path, string $filename)` – Saves the GIF to the server at the specified path

License
-------

[](#license)

This package is licensed under the MIT License.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance43

Moderate activity, may be stable

Popularity17

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

456d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4f212e916c2a0da9c20395e7a542f52f4101ac522f8b2a3a7921769d5936b343?d=identicon)[plutuss](/maintainers/plutuss)

---

Top Contributors

[![plutuss](https://avatars.githubusercontent.com/u/68703752?v=4)](https://github.com/plutuss "plutuss (1 commits)")

---

Tags

phplaravelimage processinglaravel-packageencodegifanimationanimatedcreationimage-generationgif creatorlaravel gifgif manipulationanimated imagesphp gif library

### Embed Badge

![Health badge](/badges/plutuss-gif-creator-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/plutuss-gif-creator-laravel/health.svg)](https://phpackages.com/packages/plutuss-gif-creator-laravel)
```

###  Alternatives

[lunakid/anim-gif

PHP class to create an animated GIF from multiple images

90136.3k1](/packages/lunakid-anim-gif)[sybio/gif-creator

PHP class that creates animated GIF from multiple images

326395.7k14](/packages/sybio-gif-creator)[aminyazdanpanah/php-shaka

Shaka PHP is a library that uses Shaka Packager for DASH and HLS packaging and encryption, supporting Common Encryption for Widevine and other DRM Systems.

939.0k1](/packages/aminyazdanpanah-php-shaka)[tomatophp/filament-media-manager

Manage your media files using spatie media library with easy to use GUI for FilamentPHP

14543.9k3](/packages/tomatophp-filament-media-manager)[batdan/midjourney-api-php

Generate images Midjourney (Discord API). URLs in prompt accepted

222.2k](/packages/batdan-midjourney-api-php)[nikkanetiya/laravel-color-palette

Laravel Wrapper for `ksubileau/color-thief-php`. Grabs the dominant color or a representative color palette from an image. Uses PHP and GD or Imagick.

3312.6k](/packages/nikkanetiya-laravel-color-palette)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
