kruczkowski/liip-imagine-additional-filters-bundle

Pixelate and blur filters for liip imagine bundle

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 3

Type:symfony-bundle

pkg:composer/kruczkowski/liip-imagine-additional-filters-bundle

v1.1 2020-05-21 12:52 UTC

This package is not auto-updated.

Last update: 2025-10-04 12:49:21 UTC


README

Additional Filters for Liip Imagine Bundle

pixelate filter blur filter

Basic usage

liip_imagine:
    filter_sets:
        pixelate:
            data_loader: stream.your_data_loader
            quality: 90
            filters:
                pixelate_filter:
                   size: [100, 200] //width and height
                   start: [500, 230] //starting points x and y
                   intensity: 16 // you can omit this, default is 16
                   type: ellipse // default is rectangle
         blur:
            data_loader: stream.your_data_loader
            quality: 90
            filters:
               blur_filter:
                  size: [100, 200] //width and height
                  start: [500, 230] //starting points x and y
                  

Before

before

after after