# Blurring

[i3,](/config/i3.md) our image management solution, allows you to dynamically and transparently blur your images.

To do this, we use our `TCDN-i3-transform` header, specifying the desired operation, which in this case is `blur.` Unlike other operations, such as the [conversion to WebP](/config/i3/conversion-to-webp.md) format, this operation requires an optional parameter for its execution: the percentage of blur to be applied to the original image.&#x20;

The exact syntax for this operation is as follows: `blur[:`*`<porcentaje>`*`]`. If no percentage is specified, the default value of **50%** will be assumed.&#x20;

For example, if you wanted all images on your domain `mi-dominio.es` that are located at the `URL /estaticos/imagenes` to be served with a 75% blur effect, you can simply deploy a [VCL](/config/vcl.md) [configuration](/config/easy-setup.md) similar to the following from the [dashboard:](/getting-started/dashboard.md)

```c
# i3 - blur
sub vcl_recv {
    if (req.http.host == "www.mi-dominio.es") {
        if (req.url ~ "^/estaticos/imagenes/") {
            set req.http.TCDN-i3-transform = "blur:75%";
        }
    }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.transparentedge.eu/config/i3/blurring.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
