neok / LiipImagineAdditionalFiltersBundle

Additional filter for LiipImagineBundle, pixelate and blur

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Additional filter for LiipImagineBundle, pixelate and blur


Languages

Language:PHP 100.0%