The URL that DatoCMS will assign to this image will be similar to this:
https://www.datocms-assets.com/205/1570696780-example.jpg
In fact, every asset URL will follow this structure:
https://www.datocms-assets.com/<project id>/<upload timestamp>-<asset name>.<original file format>
If you fetch this URL, you will be served the original asset. This wastes a lot of bandwidth as content editors should upload full resolution assets. The DatoCMS image pipeline allows to scale, crop, and process images on the fly based on the URL-parameters you provide.
For example, by appending ?h=200
to the base URL, you instruct DatoCMS to scale the image to be 200 pixels tall:
https://www.datocms-assets.com/205/1570696780-example.jpg?h=200
You can specify any number of parameters. The following URL, for example,
crops the image to be 800x500px, centering around the second face it recognizes inside the picture;
desaturates the image;
adds a copyright caption at the bottom;
transforms the format to be a PNG;
https://www.datocms-assets.com/205/1570542926-example.jpg?fit=facearea&faceindex=2&facepad=5&sat=-100&w=800&h=500&fm=png&txt=%C2%A9%20Matheus%20Ferrero&txt-align=bottom,center&txt-color=FFF&txt-size=15&txt-pad=20
This is the final result:
Even though the DatoCMS image backend (imgix) is fast, you get a tremendous performance boost if your frontend limits the number of sizes and crops you ask for.
The first time the image is called with these parameters, imgix will cache the resulting image on one of their geographically positioned CDN servers; subsequent calls with the same parameters will not need to reprocess the image. imgix will then propagate the image to all other CDN servers around the world, as shown on our real-time map.
Take a look at imgix's Image API Reference page to see all the transformations available.
When the same image is used in different contexts with different aspect ratios, the classic problem we might encounter is being able to crop it while preserving the key parts:
DatoCMS provides a complete set of automatic controls on the crop, but unfortunately these detection methods are all automatic, so the result in some cases may not be exactly what we expect.
With focal points, you can now ensure that the key part of your images doesn't get cut off or misaligned across multiple image sizes and ratios, by explicitly specifying a focal point for the image.
The interface allows you to preview the result of the crop operation on different aspect ratios:
When requesting a cropped version of an image without explicitly specifying a crop mode, DatoCMS will automatically center the crop on the focal point. This means that 99% of the time you won't have to change your code in any way:
To have an overview on the media area and its features, check out this video tutorial: