Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neok/liipimagineadditionalfiltersbundle
Additional filter for LiipImagineBundle, pixelate and blur
https://github.com/neok/liipimagineadditionalfiltersbundle
blur-filter liipimaginebundle php php71 pixelate-filter symfony-bundle symfony3
Last synced: 22 days ago
JSON representation
Additional filter for LiipImagineBundle, pixelate and blur
- Host: GitHub
- URL: https://github.com/neok/liipimagineadditionalfiltersbundle
- Owner: neok
- Created: 2018-03-01T21:59:09.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-13T11:20:20.000Z (almost 7 years ago)
- Last Synced: 2024-10-01T15:27:41.321Z (3 months ago)
- Topics: blur-filter, liipimaginebundle, php, php71, pixelate-filter, symfony-bundle, symfony3
- Language: PHP
- Homepage:
- Size: 2.3 MB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Additional Filters for Liip Imagine Bundle
> pixelate filter
> blur filter#### Basic usage
```yml
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](screenshots/sc1.png "Before")
after
![after](screenshots/sc2.png "After")