Download the PHP package brocode/module-image-optimizer without Composer
On this page you can find all versions of the php package brocode/module-image-optimizer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download brocode/module-image-optimizer
More information about brocode/module-image-optimizer
Files in brocode/module-image-optimizer
Package module-image-optimizer
Short Description Magento2 Module to search for certain specified image files for conversion to other formats
License MIT
Informations about the package module-image-optimizer
Image Optimizer Base - a Magento 2 setup for image optimizations
This module should ease the way of adding new image formats to a Magento 2 shop without the need of adapting any templates or markups.
Goals of this module:
- Base scanner of folders for images which might need to be served in modern formats (e.g. /pub/media)
- Framework for adding various different converter to be extendable for any new future image formats
Installation
Idea on how to delivery optimized images in a Magento 2 shop (or any other system)
Magento 2 is slow when delivering anything where a PHP process is involved in comparison to a simple file transfer for any file directly servable via the web server. This can be utilized to separate the conversion of the optimized images and serving them.
1) The conversion takes place within the Magento2 environment (or any other) to determine which files need conversion and to which file they should be converted to.
2) The webserver utilizes internal rewrites and file checks which file needs to be served, based on the request of the user agent (browser Accept-Header).
Following .htaccess snippet can be used to deliver WEBP images for certain directories if they do exists in addition to the original one:
Background information for this .htaccess entry:
- add a new mime type for webp images
- check if the browser accepts webp images
- check if the requested file is a png, gif or jpeg file
- check if a webp file exists for the requested file
- rewrite the request to the webp file
The same can be done with any other image format (e.g. for AVIF use the mime type image/avif).
Features
Cronjob for folder scanning of images
Scans all configured image folders, can be disabled via configuration.
Configuration
The cronjob can be disabled under , it is enabled per default.
Image Paths
The cron job recieves via dependency injection BroCode\ImageOptimizer\Api\Data\ImagePathProviderInterface
which can provide any directory to be scanned.
`
One default path provider is implemented, which takes arguments via di.xml. The current setting is for the pub/media folder, the Magento base folder is added automatically to every entry given:
Conversion Hooks
This module provides an event hook for every image that needs to be converted. This is implemented with an default Magento 2 event and can be utilized with an observer listening on the event . The event has following data stored that can be used:
Convert Validator
A convert validator checks if a given found image in any configured path needs conversion and which converter might be used for it. Every validator must implement . A base implementation for file checks is implemented in the abstract class .
These converter validator need to be contributed via di.xml to the :
Image conversion
There is currently no image conversion implemented in this module, this is done with following two basic modules:
- brocode/module-image-optimizer-avif (for AVIF generation)
- brocode/module-image-optimizer-webp (for WEBP generation)
Though there is the default which catches the conversion event and try to convert the image with the help of any converter contributed to the :
This is done synchronously and slows down the according cron execution, especially if there are many images.
Consider using the extensions for the usage of the Magento 2 queue system to asynchronously process image conversion:
- brocode/module-image-optimizer-queue (default MySQL queue for shops without active RabbitMQ installations)
- brocode/module-image-optimizer-amqp (extension to the queue module for configurations of the RabbitMQ services)