Last updated: Aug-18-2025
OverviewNamed transformations are one of the most useful aspects of Cloudinary's service, allowing you to take one or more transformations you have created for your images and/or videos and develop a codename for them.
In this tutorial, you'll gain an overview of what transformations and named transformations are used for in Cloudinary's APIs. Then you'll learn how to programmatically create and apply Cloudinary's named transformations to assets. Finally, you'll go a step further, optimizing your assets by utilizing Cloudinary's automatic format (f_auto
) and quality (q_auto
) features.
This video is brought to you by Cloudinary's video player - embed your own!
Tutorial contentsThis tutorial presents the following topics. Click a timestamp to jump to that part of the video.
What is a transformation?   0:06 A transformation is essentially one or more instructions that tell Cloudinary how to change the properties of a media asset. Cloudinary transformations are displayed as abbreviated parameters directly in the URL that accesses the media. What is a named transformation?   0:31 Named transformations allow you to take one or more transformations, and group them under a unique custom name. Learn more in the named transformation documentation for images or video. Example of a named transformation in the wild   0:38 The first example exposes all of the parameters within the URL. The second example keeps your set of transformations concealed within a single named transformation. Use cases for named transformations   0:51 Named transformations help with security, reusability, and reducing human error. When we add many transformations, the URL can get quite lengthy, and all transformations applied are visible in the URL structure. Creating a named transformation will conveniently condense all the transformation parameters into one item in the URL structure, hiding your transformation parameters. Clone this repository to follow along   1:02 It may be helpful to clone the repository we've created and will be using for this demonstration. Setting up your development environment   1:06 If this is your first time setting up your development environment with Cloudinary, we recommend watching our Upload Programmatically tutorial. It will also walk you through how to make your first upload. Ensure script libraries are installed   1:15 Make sure all of our script's libraries are properly installed with a simplenpm i
command. If you open your package.json file, you can see all of the packages have been listed as dependencies. Create a basic named transformation   1:57 We're using the Node.js SDK create_transformation
function to POST to the Admin API's transformations
endpoint, and we're passing it our own unique name - in this example, avatar-round
. Run script to create named transformation   2:44 Run node create-named-transformation.js
to officially create our first named transformation! Apply named transformation to three assets   2:49 Now we will apply the named transformation we just created (avatar-round) to three images in our Cloudinary Media Library (public IDs: person1
, person2
, person3
). Open a URL and inspect   3:22 As you can see, although the image has been given the rounded corners we asked for, the square background remains. The image is still in the original JPEG format, which doesn't support transparency. There are modern formats like AVIF that are optimized and support transparency. Optimizing the file format using f_auto   3:57 Let's take a look at this script, which we've called optimize.js. Cloudinary makes it possible to deliver the best, modern format for your browser by using the automatic format feature. This transformation is displayed in the URL as f_auto
. Optimizing the quality using q_auto   4:13 While we're at it, let's also add compression with quality auto (or q_auto
) for more optimization. Applying quality auto (q_auto
) will allow us to get the best compression, while maintaining great quality. You can see in the script that we are creating a chained transformation with an array of transformations. Run script to optimize the assets   4:34 Run optimize.js
to optimize the assets. The automatic formatting (f_auto
) provides a file format that supports transparency in this case. The automatic quality (q_auto
) provides an optimized, compressed quality for the asset. Inspect optimized assets in Chrome and Safari   4:42 Let's see the result in Chrome and Safari. In Chrome, we're seeing an AVIF. Safari is displaying the image as a JP2. Keep learning If you like this, you might also like...
Â
Â
Check out the Cloudinary Academy for free self-paced Cloudinary courses on a variety of developer or DAM topics, or register for formal instructor-led courses, either virtual or on-site.
Â
âï¸ Feedback sent!
âï¸Â  ErrorUnfortunately there's been an error sending your feedback.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4