innomedio / sulu-image-optimizer-bundle
Optimizes images before they are being uploaded and stored in the Sulu media library
Installs: 2 729
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^8.2
- jackalope/jackalope-doctrine-dbal: ^2.0
- spatie/image-optimizer: ^1.6
- sulu/sulu: ^2.6
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.0
- phpro/grumphp: ^2.4
- phpstan/phpstan: ^1.10
This package is auto-updated.
Last update: 2025-03-27 08:21:10 UTC
README
Because of server/hosting limitations you might have issues with Sulu cropping very large images (in size or in pixels).
This bundle optimizes (and/or resizes) images before they are added to the Sulu media library so that they are much easier to handle.
Installation
Install using composer:
composer require innomedio/sulu-image-optimizer-bundle
Add the bundle to config/bundles.php
if wasn't added automatically:
Innomedio\Sulu\ImageOptimizerBundle\InnomedioSuluImageOptimizerBundle::class => ['all' => true],
Usage
When installed, image optimization and resizing is enabled by default. These are the available settings:
innomedio_sulu_image_optimizer:
enabled: true
resize:
enabled: true
max_size: 4000 # Means if the width or height > 4000, the image will be resized to 4000
If you'd like to log all that's happening you can define your logger like this:
innomedio_sulu_image_optimizer:
logger: 'monolog.logger.YOUR_CHANNEL'