Syntax: | image_filter image_filter image_filter image_filter
image_filter
image_filter
|
---|---|
Default: | image_filter off; |
Context: | location |
Sets the type of transformation to perform on images:
off
- turns off module processing in a surrounding location.
test
- ensures that responses are images in either JPEG, GIF, PNG, or WebP format. Otherwise, the 415 (Unsupported Media Type) error is returned.
size
- outputs information about images in a JSON format, e.g.:
{ "img" : { "width": 100, "height": 100, "type": "gif" } }
In case of an error, the output is as follows:{}
-
rotate
90
|180
|270
- rotates images counter-clockwise by the specified number of degrees. Parameter value can contain variables. This mode can be used either alone or along with the
resize
andcrop
transformations. -
resize
width
height
- proportionally reduces an image to the specified sizes. To reduce by only one dimension, another dimension can be specified as “
-
”. In case of an error, the server will return code 415 (Unsupported Media Type). Parameter values can contain variables. When used along with therotate
parameter, the rotation happens after reduction. -
crop
width
height
- proportionally reduces an image to the larger side size and crops extraneous edges by another side. To reduce by only one dimension, another dimension can be specified as “
-
”. In case of an error, the server will return code 415 (Unsupported Media Type). Parameter values can contain variables. When used along with therotate
parameter, the rotation happens before reduction.
Please login to continue.