Privacy Filters

Privacy filters allow you to protect identity of people in images by applying effects to detected faces. These filters can be used with any ImageBoss operation to ensure privacy when needed.



Face Blur

Applies a blur effect to all detected faces in the image for privacy protection. This filter is ideal for protecting individual privacy while keeping the rest of the image intact.


Available Options

face-blur accepts values from 0 to 30. Higher values create more blur effect.


API Example

https://img.imageboss.me /mywebsite-images /cover /320x720 /face-blur:15 /examples/07.jpg




Example using ImageBoss Web Library

<img
    src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs="
    data-imageboss-src="/examples/07.jpg"
    data-imageboss-operation="cover"
    data-imageboss-options="face-blur:15"
    width="320"
    height="720"
/>

Face Pixel

Applies a pixelation effect to all detected faces in the image for privacy protection. Similar to face-blur but uses pixelation instead of blur for a different visual effect while maintaining privacy.


Available Options

face-pixel accepts values from 0 to 30. Higher values create larger pixel blocks.


API Example

https://img.imageboss.me /mywebsite-images /cover /720 /face-pixel:20 /examples/07.jpg




Example using ImageBoss Web Library

<img
    src="data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs="
    data-imageboss-src="/examples/07.jpg"
    data-imageboss-operation="cover"
    data-imageboss-options="face-pixel:20"
    width="320"
    height="720"
/>

Using Privacy Filters with Different Operations

Privacy filters can be combined with any ImageBoss operation. Here are some examples:


With Width Operation

https://img.imageboss.me /mywebsite-images /width /400 /face-blur:10 /examples/07.jpg


With Height Operation

https://img.imageboss.me /mywebsite-images /height /300 /face-pixel:15 /examples/07.jpg


With CDN Operation

https://img.imageboss.me /mywebsite-images /cdn /face-blur:25 /examples/07.jpg


With Cover Operation

https://img.imageboss.me /mywebsite-images /cover /320x720 /face-pixel:20 /examples/07.jpg