flownative / assetvariantbatchrendering
This package is abandoned and no longer maintained.
No replacement package was suggested.
Asset variant batch rendering for Neos Flow
Package info
github.com/flownative/assetvariantbatchrendering
Type:neos-package
pkg:composer/flownative/assetvariantbatchrendering
1.0.0
2019-11-25 17:05 UTC
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.