agencetwogether/filament-optimize-fileupload

Save your image in another format with eventually a custom quality compression directly in FileUpload component

Fund package maintenance!
agencetwogether

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/agencetwogether/filament-optimize-fileupload

0.0.2 2026-01-14 10:40 UTC

This package is auto-updated.

Last update: 2026-01-14 10:42:19 UTC


README

Latest Version on Packagist GitHub Code Style Action Status Total Downloads

Save your image in another format with eventually a custom quality compression directly in FileUpload component

Installation

You can install the package via composer:

composer require agencetwogether/filament-optimize-fileupload

Usage

After installation, just call ->optimize('webp', '50') in one of your FileUpload component in your form to automatically save your image with a desired format

FileUpload::make('image')
    ->image()
    ->optimize('webp')

You can choose any image format and eventually customizing the quality with second parameter.

FileUpload::make('image')
    ->image()
    ->optimize(format: 'jpg', quality: '40')

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

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