eab / image-filter-bundle
A bundle for eZ Publish that provides filters for use in image variations / aliases
0.9.4
2017-06-05 13:42 UTC
Requires
- ezsystems/ezpublish-kernel: ~5.4|~6.5|>=2014.11
This package is not auto-updated.
Last update: 2024-10-26 18:54:42 UTC
README
Summary
eZ Publish 5 bundle for image variation filters.
So far only 1 filter is provided: thumbnailgravityfilter/center
.
Copyright
Based on Image aliases and filters in eZ Publish 5.4+. Many thanks Thiago for this useful tutorial!
License
Licensed under GNU General Public License 2.0
Requirements
Requires eZ Publish 5.4 or above.
Installation
- Either install using composer:
composer require --update-no-dev --prefer-dist eab/image-filter-bundle
or install the source as a submodule using git:
git submodule add https://github.com/eab-dev/ImageFilterBundle src/Eab/ImageFilterBundle
- Edit the function
registerBundles()
inezpublish/EzPublishKernel.php
and add the line:
new Eab\ImageFilterBundle\EabImageFilterBundle(),
to the array of bundles. Save it.
Usage
- Configure your own image variations/aliases in your bundle's
image_variations.yml
. For example:
system: default: image_variations: my_nice_thumbnail: reference: ~ filters: - { name: thumbnailgravityfilter/center, params: [300, 300] }
- Use in your templates:
{% set thumbnail_image = ez_image_alias( content.getField( 'image' ), content.versionInfo, 'my_nice_thumbnail') %} <img class="responsive" src="{{ thumbnail_image.uri }}">