1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-01-08 10:45:04 +02:00
imgproxy/docs/generating_the_url_advanced.md

331 lines
10 KiB
Markdown
Raw Normal View History

2018-10-04 14:59:57 +02:00
# Generating the URL (Advanced)
2018-10-08 08:23:20 +02:00
This guide describes the advanced URL format that allows the use of all the imgproxy features. Read our [Generating the URL (Basic)](./generating_the_url_basic.md) guide to learn about the _basic_ URL format that is compatible with imgproxy 1.x.
2018-10-04 14:59:57 +02:00
### Format definition
2018-11-02 17:35:21 +02:00
The advanced URL should contain the signature, processing options, and source URL, like this:
2018-10-04 14:59:57 +02:00
```
2018-11-02 17:35:21 +02:00
/%signature/%processing_options/plain/%source_url@%extension
/%signature/%processing_options/%encoded_source_url.%extension
2018-10-04 14:59:57 +02:00
```
Check out the [example](#example) at the end of this guide.
#### Signature
2018-10-08 08:23:20 +02:00
Signature protects your URL from being altered by an attacker. It is highly recommended to sign imgproxy URLs in production.
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
Once you set up your [URL signature](./configuration.md#url-signature), check out the [Signing the URL](./signing_the_url.md) guide to know how to sign your URLs. Otherwise, use any string here.
2018-10-04 14:59:57 +02:00
#### Processing options
Processing options should be specified as URL parts divided by slashes (`/`). Processing option has the following format:
```
%option_name:%argument1:%argument2:...:argumentN
```
2018-10-08 08:23:20 +02:00
The list of processing options does not define imgproxy's processing pipeline. Instead, imgproxy already comes with a specific, built-in image processing pipeline for the maximum performance. Read more about it in the [About processing pipeline](./about_processing_pipeline.md) guide.
2018-10-04 14:59:57 +02:00
imgproxy supports the following processing options:
##### Resize
2018-10-25 21:56:08 +02:00
```
2019-02-21 17:55:20 +02:00
resize:%resizing_type:%width:%height:%enlarge:%extend
rs:%resizing_type:%width:%height:%enlarge:%extend
2018-10-25 21:56:08 +02:00
```
2018-10-04 14:59:57 +02:00
2019-02-21 17:55:20 +02:00
Meta-option that defines the [resizing type](#resizing-type), [width](#width), [height](#height), [enlarge](#enlarge), and [extend](#extend). All arguments are optional and can be omited to use their default values.
2018-10-04 14:59:57 +02:00
##### Size
2018-10-25 21:56:08 +02:00
```
2019-02-21 17:55:20 +02:00
size:%width:%height:%enlarge:%extend
s:%width:%height:%enlarge:%extend
2018-10-25 21:56:08 +02:00
```
2018-10-04 14:59:57 +02:00
2019-02-21 17:55:20 +02:00
Meta-option that defines the [width](#width), [height](#height), [enlarge](#enlarge), and [extend](#extend). All arguments are optional and can be omited to use their default values.
2018-10-04 14:59:57 +02:00
##### Resizing type
2018-10-25 21:56:08 +02:00
```
resizing_type:%resizing_type
rt:%resizing_type
```
2018-10-04 14:59:57 +02:00
Defines how imgproxy will resize the source image. Supported resizing types are:
2018-10-08 08:23:20 +02:00
* `fit`: resizes the image while keeping aspect ratio to fit given size;
2019-06-13 10:20:11 +02:00
* `fill`: resizes the image while keeping aspect ratio to fill given size and cropping projecting parts.
2018-10-04 14:59:57 +02:00
Default: `fit`
##### Width
2018-10-25 21:56:08 +02:00
```
width:%width
w:%width
```
2018-10-04 14:59:57 +02:00
2019-06-13 10:20:11 +02:00
Defines the width of the resulting image. When set to `0`, imgproxy will calculate the resulting width using the defined height and source aspect ratio.
2018-10-04 14:59:57 +02:00
Default: `0`
##### Height
2018-10-25 21:56:08 +02:00
```
height:%height
h:%height
```
2018-10-04 14:59:57 +02:00
2019-06-13 10:20:11 +02:00
Defines the height of the resulting image. When set to `0`, imgproxy will calculate resulting height using the defined width and source aspect ratio.
2018-10-04 14:59:57 +02:00
Default: `0`
2018-11-15 14:58:35 +02:00
##### Dpr
```
dpr:%dpr
```
When set, imgproxy will multiply the image dimensions according to this factor for HiDPI (Retina) devices. The value must be greater than 0.
Default: `1`
2018-10-04 14:59:57 +02:00
##### Enlarge
2018-10-25 21:56:08 +02:00
```
enlarge:%enlarge
el:%enlarge
```
2018-10-04 14:59:57 +02:00
If set to `0`, imgproxy will not enlarge the image if it is smaller than the given size. With any other value, imgproxy will enlarge the image.
Default: `0`
2019-02-21 17:55:20 +02:00
##### Extend
```
extend:%extend
ex:%extend
```
If set to `0`, imgproxy will not extend the image if the resizing result is smaller than the given size. With any other value, imgproxy will extend the image to the given size.
Default: `0`
2018-10-04 14:59:57 +02:00
##### Gravity
2018-10-25 21:56:08 +02:00
```
gravity:%gravity
g:%gravity
```
2018-10-04 14:59:57 +02:00
When imgproxy needs to cut some parts of the image, it is guided by the gravity. The following values are supported:
2018-10-08 08:23:20 +02:00
* `no`: north (top edge);
* `so`: south (bottom edge);
* `ea`: east (right edge);
* `we`: west (left edge);
* `noea`: north-east (top-right corner);
* `nowe`: north-west (top-left corner);
* `soea`: south-east (bottom-right corner);
* `sowe`: south-west (bottom-left corner);
2018-10-08 08:23:20 +02:00
* `ce`: center;
* `sm`: smart. `libvips` detects the most "interesting" section of the image and considers it as the center of the resulting image;
* `fp:%x:%y`: focus point. `x` and `y` are floating point numbers between 0 and 1 that define the coordinates of the center of the resulting image. Treat 0 and 1 as right/left for `x` and top/bottom for `y`.
2018-10-04 14:59:57 +02:00
Default: `ce`
2019-06-13 10:20:11 +02:00
##### Crop
```
crop:%width:%height:%gravity
c:%width:%height:%gravity
```
Defines an area of the image to be processed (crop before resize).
* `width` and `height` define the size of the area. When `width` or `height` is set to `0`, imgproxy will use the full width/height of the source image.
* `gravity` accepts the same values as [gravity](#gravity) option. When `gravity` is not set, imgproxy will use the value of the [gravity](#gravity) option.
2018-10-30 14:20:02 +02:00
##### Quality
```
quality:%quality
q:%quality
```
Redefines quality of the resulting image, percentage.
Default: value from the environment variable.
2018-10-04 14:59:57 +02:00
##### Background
2018-10-25 21:56:08 +02:00
```
background:%R:%G:%B
bg:%R:%G:%B
2018-10-04 14:59:57 +02:00
2018-10-25 21:56:08 +02:00
background:%hex_color
bg:%hex_color
```
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
When set, imgproxy will fill the resulting image background with the specified color. `R`, `G`, and `B` are red, green and blue channel values of the background color (0-255). `hex_color` is a hex-coded value of the color. Useful when you convert an image with alpha-channel to JPEG.
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
With no arguments provided, disables any background manipulations.
2018-10-04 14:59:57 +02:00
Default: disabled
##### Blur
2018-10-25 21:56:08 +02:00
```
blur:%sigma
bl:%sigma
```
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
When set, imgproxy will apply the gaussian blur filter to the resulting image. `sigma` defines the size of a mask imgproxy will use.
2018-10-04 14:59:57 +02:00
Default: disabled
##### Sharpen
2018-10-25 21:56:08 +02:00
```
sharpen:%sigma
sh:%sigma
```
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
When set, imgproxy will apply the sharpen filter to the resulting image. `sigma` the size of a mask imgproxy will use.
2018-10-04 14:59:57 +02:00
As an approximate guideline, use 0.5 sigma for 4 pixels/mm (display resolution), 1.0 for 12 pixels/mm and 1.5 for 16 pixels/mm (300 dpi == 12 pixels/mm).
Default: disabled
##### Watermark
2018-10-25 21:56:08 +02:00
```
2018-10-28 14:05:57 +02:00
watermark:%opacity:%position:%x_offset:%y_offset:%scale
wm:%opacity:%position:%x_offset:%y_offset:%scale
2018-10-25 21:56:08 +02:00
```
Puts watermark on the processed image.
* `opacity` - watermark opacity modifier. Final opacity is calculated like `base_opacity * opacity`. It's highly recommended to set this argument as `1` and adjust opacity with `IMGPROXY_WATERMARK_OPACITY` since this would optimize performance and memory usage.
* `position` - (optional) specifies the position of the watermark. Available values:
* `ce`: (default) center;
* `no`: north (top edge);
* `so`: south (bottom edge);
* `ea`: east (right edge);
* `we`: west (left edge);
* `noea`: north-east (top-right corner);
* `nowe`: north-west (top-left corner);
* `soea`: south-east (bottom-right corner);
* `sowe`: south-west (bottom-left corner);
* `re`: replicate watermark to fill the whole image;
2018-10-28 14:05:57 +02:00
* `x_offset`, `y_offset` - (optional) specify watermark offset by X and Y axes. Not applicable to `re` position;
* `scale` - (optional) floating point number that defines watermark size relative to the resulting image size. When set to `0` or omitted, watermark size won't be changed.
Default: disabled
2018-10-04 14:59:57 +02:00
##### Preset
2018-10-25 21:56:08 +02:00
```
preset:%preset_name1:%preset_name2:...:%preset_nameN
pr:%preset_name1:%preset_name2:...:%preset_nameN
```
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
Defines a list of presets to be used by imgproxy. Feel free to use as many presets in a single URL as you need.
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
Read more about presets in the [Presets](./presets.md) guide.
2018-10-04 14:59:57 +02:00
Default: empty
2018-10-29 10:54:30 +02:00
##### Cache buster
```
cachebuster:%string
cb:%string
```
Cache buster doesn't affect image processing but it's changing allows to bypass CDN, proxy server and browser cache. Useful when you have changed some things that are not reflected in the URL like image quality settings, presets or watermark data.
It's highly recommended to prefer `cachebuster` option over URL query string because the option can be properly signed.
Default: empty
2018-10-04 14:59:57 +02:00
##### Format
2018-10-25 21:56:08 +02:00
```
format:%extension
f:%extension
ext:%extension
```
2018-10-04 14:59:57 +02:00
2018-10-08 08:23:20 +02:00
Specifies the resulting image format. Alias for [extension](#extension) URL part.
2018-10-04 14:59:57 +02:00
Default: `jpg`
2018-11-02 17:35:21 +02:00
#### Source URL
2018-10-04 14:59:57 +02:00
2018-11-02 17:35:21 +02:00
There are two ways to specify source url:
##### Plain
2018-11-02 18:33:56 +02:00
The source URL can be provided as is, prendended by `/plain/` part:
2018-11-02 17:35:21 +02:00
2018-11-02 18:33:56 +02:00
```
/plain/http://example.com/images/curiosity.jpg
```
**Note:** If the sorce URL contains query string or `@`, you need to escape it.
When using plain source URL, you can specify the [extension](#extension) after `@`:
```
/plain/http://example.com/images/curiosity.jpg@png
```
2018-11-02 17:35:21 +02:00
##### Base64 encoded
2018-11-02 18:33:56 +02:00
The source URL can be encoded with URL-safe Base64. The encoded URL can be split with `/` for your needs:
2018-11-02 17:35:21 +02:00
2018-11-02 18:33:56 +02:00
```
/aHR0cDovL2V4YW1w/bGUuY29tL2ltYWdl/cy9jdXJpb3NpdHku/anBn
```
When using encoded source URL, you can specify the [extension](#extension) after `.`:
```
/aHR0cDovL2V4YW1w/bGUuY29tL2ltYWdl/cy9jdXJpb3NpdHku/anBn.png
```
2018-10-04 14:59:57 +02:00
#### Extension
2018-12-02 15:17:19 +02:00
Extension specifies the format of the resulting image. At the moment, imgproxy supports only `jpg`, `png`, `webp`, `gif`, and `ico`, them being the most popular and useful image formats on the Web.
2018-11-08 12:34:21 +02:00
**Note:** Read about GIF support [here](./image_formats_support.md#gif-support).
2018-10-04 14:59:57 +02:00
The extension part can be omitted. In this case, imgproxy will use source image format as resulting one. If source image format is not supported as resulting, imgproxy will use `jpg`. You also can [enable WebP support detection](./configuration.md#webp-support-detection) to use it as default resulting format when possible.
2018-10-04 14:59:57 +02:00
### Example
2018-10-08 08:23:20 +02:00
Signed imgproxy URL that uses `sharp` preset, resizes `http://example.com/images/curiosity.jpg` to fill `300x400` area with smart gravity without enlarging, and then converts the image to `png`:
2018-10-04 14:59:57 +02:00
```
2018-11-02 17:35:21 +02:00
http://imgproxy.example.com/AfrOrF3gWeDA6VOlDG4TzxMv39O7MXnF4CXpKUwGqRM/preset:sharp/resize:fill:300:400:0/gravity:sm/plain/http://example.com/images/curiosity.jpg@png
2018-10-04 14:59:57 +02:00
```
The same URL with shortcuts will look like this:
2018-11-02 17:35:21 +02:00
```
http://imgproxy.example.com/AfrOrF3gWeDA6VOlDG4TzxMv39O7MXnF4CXpKUwGqRM/pr:sharp/rs:fill:300:400:0/g:sm/plain/http://example.com/images/curiosity.jpg@png
```
The same URL with Base64-encoded source URL will look like this:
2018-10-04 14:59:57 +02:00
```
http://imgproxy.example.com/AfrOrF3gWeDA6VOlDG4TzxMv39O7MXnF4CXpKUwGqRM/pr:sharp/rs:fill:300:400:0/g:sm/aHR0cDovL2V4YW1w/bGUuY29tL2ltYWdl/cy9jdXJpb3NpdHku/anBn.png
```