flownative / assetvariantbatchrendering
Asset variant batch rendering for Neos Flow
Installs: 968
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:neos-package
Requires
- neos/media: ~4.3
- neos/media-browser: ~4.3
This package is auto-updated.
Last update: 2024-02-29 03:37:46 UTC
README
Asset variant batch rendering
This package provides batch rendering of asset variants for Neos 4.3. The functionality is to be included in Neos 5.1.
It provides the following functionality:
- (re-)render variants based on presets
- re-render variants when replacing an asset resource
Installation
If you want to use this package, simply require it:
$ composer require 'flownative/assetvariantbatchrendering:1.*'
Configuration
The package comes with no configurable settings itself. But you will need to configure asset variant presets. Here is an example for a square preset:
Neos: Media: variantPresets: 'AcmeCom:Square': mediaTypePatterns: ['~image/.*~'] variants: 'square': label: 'Square' adjustments: 'crop': type: 'Neos\Media\Domain\Model\Adjustment\CropImageAdjustment' options: aspectRatio: '1:1'
See the variant presets documentation for details.