vaghey/image-editor

GD-powered image manipulation for Laravel

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/vaghey/image-editor

1.0.0 2025-09-30 09:51 UTC

This package is auto-updated.

Last update: 2025-12-31 00:28:50 UTC


README

A lightweight Laravel 12 package for image manipulation and optimization. Built for speed, simplicity, and developer happiness.

I'm building on top of it over time — no fixed roadmap, just creative evolution.

🚀 Features

  • Resize images with custom dimensions
  • Facade and helper support for clean usage
  • Designed for Laravel 12+ with auto-discovery

📦 Installation

Install via Composer:

composer require vaghey/image-editor

⚙️ Configuration

No manual provider registration needed — Laravel auto-discovers the service provider, facade, and helper.

🧩 Usage

Using the Facade

use Vaghey\ImageEditor\Facades\ImageEditor;

ImageEditor::make($sourcePath)->resizeToWidth();

Using the Helper

imageEditor($sourcePath)->resizeToWidth();

The imageEditor() helper is autoloaded via Composer. Just be mindful of potential naming collisions if you already have a function with the same name 😁

📄 License

This package is open-sourced software licensed under the MIT license.