Skip to main content
Autorender applies transformations in real time from the delivery URL. You add transform tokens to the path; the CDN returns the processed image or video, and every result is cached at the edge. You can use URL transformations to:
  • Resize, crop, rotate, flip, and zoom images to fit any layout
  • Round corners for avatars, cards, and UI elements
  • Add text and image overlays for watermarks, banners, and social cards
  • Convert format and tune quality per browser with f_auto and q_auto
  • Store common combinations as reusable recipe tokens
Transformations run on the delivery domain assets.autorender.io. There is nothing to precompute — every variant is generated on first request, so you never store multiple copies of the same asset.

How does it work?

You apply transformations by inserting a comma-separated token string into the URL path. When a request arrives, Autorender processes the source asset and returns the transformed result. The first request to a transformed URL triggers processing, and the result is cached at the CDN edge. Every later request for the same URL is served straight from cache — the transformation does not run again, so there is no per-request processing cost for repeat loads. Every delivery URL follows the same anatomy: domain, workspace ID, transforms, then the file path.
https://assets.autorender.io/LOKVTtKVGb/w_300,h_300/products/chair.jpg
Here LOKVTtKVGb is your workspace ID and w_300,h_300 resizes the image to 300×300 px (w_300,h_300). Everything after the transform segment is the source path.

How to use transformations?

Append the transform tokens between the workspace ID and the file path. The example below takes an untransformed asset and resizes it to 360×360 px (w_360,h_360).
Original earring image
Tokens combine in one segment. This example focuses the crop on a detected face (fo_face), sizes it to 300×300 px, and rounds it into a circular avatar with a 150 px radius (br_150).
Image cropped to 300 pixels wide focused on the face

Transformation summary

Next steps

Resize and aspect ratio

Set width, height, and aspect ratio with w_, h_, and ar_.

Crop

Control crop modes, positions, and face or object detection.

Effects

Apply grayscale, sharpen, brightness, and other filters.

Recipes

Store common transform combinations as reusable t_ tokens.