neok/liip-imagine-additional-filters-bundle

Pixelate and blur filters for liip imagine bundle

Installs: 314

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 3

Open Issues: 0

Type:symfony-bundle

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

dev-master 2018-03-13 11:20 UTC

This package is auto-updated.

Last update: 2025-09-29 02:02:18 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