> For the complete documentation index, see [llms.txt](https://docs.transparentedge.eu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.transparentedge.eu/config/i3/definition-of-the-maximum-size-content-length.md).

# Definition of the maximum size (content-length)

[i3](/config/i3.md), our image management solution, allows you to dynamically and transparently restrict the maximum size (`Content-Length`) of your images by applying a progressive degradation in their quality.

To achieve this, we use our `TCDN-i3-transform` header, specifying the desired operation type, which in this case is `max_length.` Unlike other operations, such as [conversion to WebP format](/config/i3/conversion-to-webp.md), this operation requires a mandatory parameter: the maximum size that the resulting image will have. This parameter has the format `<size>[<unit>]`, where if no unit is specified, it is implicitly assumed to be in bytes. The accepted values for `<unit>` are `b` (bytes), `k` (kilobytes), and `m` (megabytes). For example, a valid value could be `640k.`

The exact syntax for this operation is as follows: `max_length:<size>[<unit>].`

Unlike the [quality](/config/i3/quality-adjustment.md) operation, this operation is not restricted to a specific image format.

For instance, if you wanted all the images in your domain `mi-dominio.es` under the URL `/estaticos/imagenes` to be served with a maximum size of 1 MiB, you would simply deploy a [VCL](/config/vcl.md) configuration similar to the following from the [dashboard](/getting-started/dashboard.md):

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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.transparentedge.eu/config/i3/definition-of-the-maximum-size-content-length.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
