- 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_autoandq_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. HereLOKVTtKVGb 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 image
- Resized to 360×360 px

fo_face), sizes it to 300×300 px, and rounds it into a circular avatar with a 150 px radius (br_150).
- Face crop (fo_face,w_300)
- Circular avatar (br_150)

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.
