jQuery image manipulation

Overview

Cloudinary is a cloud-based service that provides an end-to-end image management solution including uploads, storage, administration, image manipulation, and delivery.

After uploading images to Cloudinary, they can be made available to users of your web and mobile applications via dynamic URLs. With these simple URLs, you can tell Cloudinary to transform and manipulate your images. Cloudinary optimizes your images and automatically routes them through a fast CDN applying advanced caching techniques for optimal user experience.

Cloudinary can create transformed versions of your images either eagerly while uploading or on-the-fly when their url is first accessed. Transformed images are stored persistently in the cloud for future delivery through worldwide CDN edges. All image manipulations are performed automatically in the cloud. You don't need to install any image processing software such as complex canvas based Javascript tools. Cloudinary will take care of all your jQuery image manipulation needs.

Cloudinary also supports retrieving and manipulating your users' Facebook and Twitter social profile pictures.

In addition to images, Cloudinary can be used to manage non-image files. These can be uploaded to Cloudinary and delivered to your users as-is.

Cloudinary's Javascript plugin simplifies the generation of image manipulation URLs. The plugin includes view helper methods for embedding images and transformed images in your web views.

For a full list of supported transformations and their usage, refer to Image transformation reference.

Display images

You can add images to your web page using Cloudinary's $.cloudinary.image helper method. This method generates the full image resource URL based on the given parameters and creates an IMG tag you can add to to your HTML code:

For example, displaying the uploaded image with the sample public ID, while providing an alternate text:

$.cloudinary.image("sample.jpg", { alt: "Sample Image" });  

​
864x576 JPG (Scaled down)

If cloud_name is configured to be demo, this code is equivalent to:

<img alt=​"Sample Image" src=​"http:​/​/​res.cloudinary.com/​demo/​image/​upload/​sample.jpg"/>

You can use $.cloudinary.image to show transformed versions of your uploaded images by adding transformation instructions. For example, displaying the 'sample' image resized to fill a 100x150 area:

$.cloudinary.image("sample.jpg", { width: 100, height: 150, crop: 'fill' });
100x150 JPG

This is equivalent to:

<img width="100" height="150"
     src="http://res.cloudinary.com/demo/image/upload/c_fill,h_150,w_100/sample.jpg"/>

Below you will find many additional examples of image manipulations for your web applications. For a full list of supported image manipulations, see Image transformations.

Image versions

By default, Cloudinary assigns a unique public ID to each uploaded image. Alternatively, you can define your own public ID. If you upload an image with a public ID that already exists, the file will be overridden. Still, the CDN may already contain a previously cached copy of the older image.

To force the CDN to display the latest uploaded image, you should add a version component to Cloudinary's URLs. The version value is returned by Cloudinary as part of the response of the upload API call, and is unique per upload. Adding the version component to URLs can be done by setting the version parameter, for example:

$.cloudinary.image("sample.jpg", { version: 1315746344 });

Direct URL building

$.cloudinary.image generates an HTML image tag. In certain occasions, you might want to generate a transformation URL directly, without the containing image tag. You can do that by using the $.cloudinary.url helper method. Here are few examples:

$.cloudinary.url("sample.jpg", { width: 100, height: 150, crop: 'fill' });      

// Output: "http://res.cloudinary.com/demo/image/upload/c_fill,h_150,w_100/sample.jpg"
$.cloudinary.url("sample_spreadsheet.xls", { resource_type: 'raw' });

// Output: "http://res.cloudinary.com/demo/raw/upload/sample_spreadsheet.xls"

Secure HTTPS URLs

Cloudinary supports delivering images using HTTPS URLs. These images are delivered through a CDN as well. When using $.cloudinary.image in your web page, this is done automatically for you, based on the request protocol of the page containing the image tag.

You can force $.cloudinary.image to always use HTTPS URLs by setting the secure parameter to true, either globally or locally in each call to $.cloudinary.image or cloudinary_url. For example:

$.cloudinary.image("sample.jpg", { secure: true, 
                   width: 100, height: 150, crop: 'fill' });      

// Output: <img width="100" height="150" 
// src="https://res.cloudinary.com/demo/image/upload/c_fill,h_150,w_100/sample.jpg"/>
$.cloudinary.url("sample.jpg", 
                 { secure: true, width: 100, 
                   height: 150, crop: 'fill' });

=> "https://res.cloudinary.com/demo/image/upload/c_fill,h_150,w_100/sample.jpg"

Lazy loading and dynamic transformations

You can use Cloudinary's jQuery plugin to lazy load all your images and dynamically update your HTML image tags to point to CDN URLs of dynamically transformed images that match the browser and resolution of the device (Responsive Images).

You should set the src attribute to be any placeholder image while setting the data-src or data-source attribute to the public ID of an image uploaded to Cloudinary. Additional transformation instructions can be applied using data attributes.

The following image tag points to a placeholder 'blank.png' image, but the actual image is 'couple.jpg'. 'couple' is a public ID of an image previously uploaded to Cloudinary. All attributes starting with 'data-' are parameters to Cloudinary's image transformation engine.

<img src="blank.png" class="dynamic_image"
     data-src="couple.jpg" 
     data-width="115" data-height="135"
     data-crop="thumb" data-gravity="faces" data-radius="20"/>

Simply running $.cloudinary on a given jQuery selector would process all images matching the given selector. The following example processes all elements with the dynamic_image class when the document is ready:

$(document).ready(function() {
     $(".dynamic_image").cloudinary();
});

This would automatically generate transformed versions on the fly. In this example, a 115x135 rounded-cornered thumbnail based on face detection. The transformed image is delivered through a fast CDN. The IMG tag would be converted to the following and the requested image would be displayed:

<img width="115" height="135" class="dynamic_image" 
     src="http://res.cloudinary.com/demo/image/upload/w_115,h_135,c_thumb,g_faces,r_20/couple.jpg"/>

You can define transformations dynamically from your Javascript code instead of statically defining them. The following example would reach the same result image as in the example above:

<img src="blank.png" data-src="couple.jpg" class="dynamic_image" />
$(document).ready(function() {
     $(".dynamic_image").cloudinary({ 
        width: 115, height: 135, crop: 'thumb', gravity: 'faces', radius: 20 
     });
});

Multiple CDN sub-domains

Browsers limit the number of download requests they perform concurrently from each unique domain. The lower concurrency means that downloading many images from a single web page might be somewhat slow. To overcome this limitation, Cloudinary supports downloading images from multiple sub-domains. This can results in a much improved web browsing speed.

You can enable downloads from multiple sub-domains by setting cdn_subdomain to true either in globally or in each call to $.cloudinary.image:

$.cloudinary.image("sample.jpg", { cdn_subdomain: true });

// Output: <img src="http://a4.res.cloudinary.com/demo/image/upload/sample.jpg"/>
$.cloudinary.config('cdn_subdomain', true);

See this blog post for more details: Reduce site load time with multiple CDN sub-domains.

Error handling

Did you get a broken or an empty image when accessing a Cloudinary transformation URL? it might be a simple matter of using a wrong syntax. To understand more, check your X-Cld-Error HTTP response header. This is where Cloudinary reports the errors it encounters.

For example, trying to access the following URL:

http://res.cloudinary.com/demo/image/upload/w_abc/sample.jpg  

X-Cld-Error: Invalid width - abc

To view the X-Cld-Error header on the Chrome browser, select Developers Tools from the View menu. Then select the Network tab, refresh your page, click on the image name with the 400 status code and look for X-Cld-Error under Response Headers.

Resize, crop and thumbnails

Cloudinary makes it very simple to manipulate images. To show a transformed version of an uploaded image, simply provide transformation instructions as part of Cloudinary's image urls.

For example, displaying the 'sample' image transformed to fill a 100x150 area:

$.cloudinary.image("sample.jpg", { width: 100, height: 150, crop: 'fill' });
100x150 JPG

Note that you must provide the crop parameter, for the resize or crop transformation to take effect. Without it, the image will be downloaded at its original dimensions and the browser will end up stretching or shrinking it on the client's side.

If you want to transform an uploaded image to a certain dimension and display it within your page in a different dimension, you can use the optional html_width and html_height parameters. Here's an example of the Cloudinary code and its equivalent image tag:

$.cloudinary.image("sample.jpg", { width: 100, height: 150, crop: 'fill', 
             html_width: 50, html_height: 75 });
100x150 PNG displayed as 50x75

This is equivalent to:

<img width=​"50" height=​"75" 
     src=​"http:​/​/​res.cloudinary.com/​demo/​image/​upload/​c_fill,h_150,w_100/​sample.jpg"/>​

Scale mode

You can scale an image to an exact width and height by setting the crop parameter to scale:

$.cloudinary.image("sample.jpg", { width: 100, height: 150, crop: 'scale' });
100x150 JPG

Fit mode

Cloudinary's fit cropping mode (set crop to fit) transforms the image to fit in a given rectangle while retaining its original proportions.

$.cloudinary.image("sample.jpg", { width: 100, height: 150, crop: 'fit' });
100x67 JPG

Fill mode

Transform an image to fill specific dimensions completely while retaining its original proportions by setting crop to fill. Only part of the original image might be visible if the required proportions are different than the original ones.

$.cloudinary.image("sample.jpg", { width: 100, height: 150, crop: 'fill' });
100x150 JPG

By default, fill keeps the center of the image centered while cropping the image to fill the given dimensions. You can control this behavior by specifying the gravity parameter. In the following example, gravity is set to South East.

$.cloudinary.image("sample.jpg", 
          { width: 100, height: 150, crop: 'fill', gravity: 'south_east' });
100x150 JPG

Limit mode

The limit cropping mode is used to create an image that does not exceed the given width or height. If the original image is smaller than the given limits, the generated image will be identical to the original one. If the original is bigger than the given limits, it will be resized while retaining original proportions (similar to the 'fit' mode in this case).

$.cloudinary.image("sample.jpg", { width: 100, height: 150, crop: 'limit' });
100x67 JPG

Pad mode

Cloudinary's pad cropping mode will resize the image to fill the given dimensions while retaining original proportions. You can specify 'gravity' to select which portion of the original image will be used to fill the rectangle.

$.cloudinary.image("sample.jpg", { width: 100, height: 150, crop: 'pad' });
100x150 JPG

Crop mode

The crop mode allows custom coordinates cropping based on a given gravity parameter or a combination of x, y, width and height parameters.

$.cloudinary.image("brown_sheep.jpg", 
             { width: 300, height: 200, x: 355, y: 410, crop: 'crop' });
300x200 JPG

See Crop Modes documentation for more details.

Percentage based resizing

You can change the dimensions of an image using relative percentage instead of absolute pixels. Simply use a decimal value to define the required size. You can provide only width or height instead of both and Cloudinary will maintain the aspect ratio.

For example, resizing the 'sample' image to 20% of its original size is done by setting the width parameter to 0.2:

$.cloudinary.image("sample.jpg", { crop: 'scale', width: 0.2 });
172x115 JPG

Increasing the image size is also possible. Setting 'width' to 1.5 will scale up the image by 150%:

$.cloudinary.image("sample.jpg", { crop: 'scale', width: 1.5 });

Format conversion

To convert an uploaded image to a different image format, simply change its extension. For example, to convert an uploaded JPG file to GIF, add .gif suffix to the public ID of your image:

$.cloudinary.image("sample.gif");

You can also set the first parameter to be your image's public ID and specify the required image type by setting the format to the required format:

$.cloudinary.image("sample", { format: 'png' });

When delivering JPG photos, you might want to control the image quality (compression level). A lower quality means a much smaller file that can be viewed faster by your users. You can set the quality parameter to a value between 1 to 100.

$.cloudinary.image("sample.jpg", { quality: 50 });

Cloudinary supports generating thumbnails from PDF documents. You can use the page parameter to generate a thumbnail of a specific page.

$.cloudinary.image("multi_page_pdf.jpg", { width: 100, height: 140,
             crop: 'fill', page: 2 });

The supported image formats are: jpg, png, gif, bmp, tiff, ico, pdf, eps, psd, webp, svg, wdp

Face detection

Cloudinary can detect one or more faces in a picture. This allows it to smartly crop photos or to manipulate images based on the automatically detected faces in them.

You can transform an image to fill given dimensions while keeping the photographed subject's face visible, by setting the gravity parameter to face together with the fill crop mode:

$.cloudinary.image("face_top.jpg", { width: 90, height: 90, 
             crop: 'fill', gravity: 'face' });

Creating a thumbnail centered on a detected face is done by specifying the thumb crop mode and selecting the face gravity:

$.cloudinary.image("face_top.jpg", { width: 90, height: 90, 
             crop: 'thumb', gravity: 'face' });

You can also crop a certain region of an image based on face detection by selecting the crop mode and specifying the face gravity:

$.cloudinary.image("face_top.jpg", { width: 50, height: 50, 
             crop: 'crop', gravity: 'face' });

In order to create a thumbanil covering multiple faces detected in a photo, set the gravity parameter to faces.

$.cloudinary.image("couple.jpg", { width: 115, height: 136, 
             crop: 'thumb', gravity: 'faces' });

You can even tell Cloudinary to automatically pixelate or blur all detected faces using the pixelate_faces and blur_faces effects. For example:

$.cloudinary.image("couple.jpg", { effect: "pixelate_faces", width: 150, 
             height: 150, crop: 'thumb', gravity: 'faces' });

Facebook and Twitter profile pictures

The $.cloudinary.facebook_profile_image, $.cloudinary.twitter_profile_image and $.cloudinary.twitter_name_profile_image view helper methods can be used to embed the social profile pictures of your users inside your web or mobile apps.

See Facebook profile pictures and Twitter profile pictures for more details.

You can manipulate the fetched profile pictures with any of Cloudinary's transformations so they perfectly match your graphic design. For example:

$.cloudinary.facebook_profile_image("billclinton.jpg", 
    { width: 90, height: 98, crop: 'fill', gravity: 'face' });
$.cloudinary.twitter_name_profile_image("billclinton.jpg");

Social pictures were automatically fetched from the social network by Cloudinary, dynamically transformed and delivered cached through a CDN. Social profile pictures delivered by Cloudinary are refreshed once a week. This way, when your users switch their profile photos, the latest ones will be used. See Update and delete images for more details about image refreshing.

Displaying and transforming Google+ and Gravatar images is also supported.

Alter shape

Cloudinary supports various shape and content image manipulation features.

You can tell Cloudinary to round your images corners by setting the radius parameter. For example, using a radius of 20 pixels:

$.cloudinary.image("sample.png", { width: 150, height: 100, 
             crop: 'fill', radius: 20 });

Setting the radius parameter to max makes an image circular (or elliptic):

$.cloudinary.image("face_left.jpg", { width: 150, height: 150, 
             crop: 'thumb', gravity: 'face', radius: 'max' });

You can rotate an image arbitrarily using the angle parameter. For example, rotating by 25 degrees:

$.cloudinary.image("sample.jpg", { angle: 25 });

Photos taken by digital cameras or smartphones usually include additional metadata (Exif, IPTC) that stores the orientation of the photo (e.g., portrait or landscape). Cloudinary can automatically rotate an image based on its orientation metadata by setting the angle to exif:

$.cloudinary.image("sample.jpg", { angle: 'exif' });

See this blog post for more details about Automatic and custom image rotation.

Add a border around an image by setting the border to either a hash of width in pixels and color (RGB of name) or a string of the following format '4px_solid_rgb:553311'. For example:

$.cloudinary.image("sample.jpg", { border: { width: 4, color: '#553311' } });

See this blog post for more details about Adding borders to images.

You can make an image semi-transparent by setting the opacity parameter to a value smaller than 100. For example, reducing opacity to 20%:

$.cloudinary.image("mountain.jpg", { opacity: 20 });

See this blog post for additional details about Image opacity manipulation.

Chained transformations

Cloudinary supports powerful transformations. You can even combine multiple transformations together as part of a single transformation request, e.g. crop an image and add a border. In certain cases you may want to perform additional transformations on the result of a single transformation request. In order to do that, you can use Cloudinary's chained transformations.

To support chained transformations, Cloudinary's transformation URLs allows you to include multiple transformation components separated by '/'. Each transformation component is executed on the result of the previous one. Applying multiple transformations is done by specifying the transformation parameter.

The following example first crops the original image to a specific set of custom coordinates and then transforms the result so it fills a 130x100 rectangle:

$.cloudinary.image("brown_sheep.jpg", {
           transformation: 
             { width: 300, height: 200, x: 355, y: 410, crop: 'crop' },
           width: 130, height: 100, crop: 'fill'
         });
130x100 JPG

You can chain more than two transformations together. In this case, the transformation parameter can be set to an array of transformation hashes. The following example applies 4 chained transformations: custom cropping to 300x200, fill to 130x100, rotate by 20 degrees and scale to 50%.

$.cloudinary.image("brown_sheep.jpg", {
           transformation: [
             { width: 300, height: 200, x: 355, y: 410, crop: 'crop' },
             { width: 130, height: 100, crop: 'fill' },
             { angle: 20 },
             { width: 0.5, crop: 'scale' }                     
           ]
          });
78x69 JPG

Named transformations

Cloudinary's URLs include your full transformation instructions. If you use Cloudinary to apply complex transformations on your images, you may end up with somewhat long URLs.

To shorten your urls, You can give any dynamic transformation a short name. You can name single transformations and also complex chained transformation. Named transformations can be created either in the Transformations web interface of our Management Console or using the Admin API.

Using named transformations also hides the exact manipulations you apply to your images, from your more advanced users.

Cloudinary's transformation parameter can be set to a name of a single transformation and will also accept an array of transformation names to chain together. For example, if you created a transformation named 'jpg_with_quality_30', you can apply it like this:

$.cloudinary.image("sample.jpg", { transformation: 'jpg_with_quality_30' });
864x576 JPG (Scaled down)

Using a named transformation means that your image URLs will include this transformation's name. If you wish to modify this transformation, we recommended that you assign a different name to it, otherwise your image URLs won't change and older, cached copies of your transformed images might be returned by the CDN.

Cloudinary's web interface and Admin API can be used to delete and re-create a named transformation. This is currently limited to transformations with up to 100 derived images associations.

Filters and effects

Cloudinary supports applying various filters and effects on your pictures. A full list of filters and effects is available here. You may also want to look at the following blog posts:

Applying an effect can be done by setting the effect parameter with the name of the required filter or effect. For example, applying the sepia effect:

$.cloudinary.image("sample.jpg", { effect: "sepia" });

Some effects can be controlled using a level attribute. The following example increases the image's saturation by 70% using the 'saturation:70' effect parameter:

$.cloudinary.image("sample.jpg", { effect: "saturation:70" });

Some effects accept a negative level value. The following example reduces the image's brightness level by 30%, using an alternative interface - passing an array of the effect name and level value:

$.cloudinary.image("sample.jpg", { effect: ["brightness", -30] });

Using chained transformations you can apply multiple effects to reach more complex results. The following example reduces the image's green level by 50%, increases brightness by 50% and applies a gradient fade effect:

$.cloudinary.image("sample.jpg", { transformation: [
              {effect: "green:-50"}, 
              {effect: "brightness:50"}, 
              {effect: "gradient_fade"}
             ]});

Don't forget to browse through our always growing list of filters and effects.

Overlays, underlays and watermarks

Cloudinary supports generating new images by layer multiple images one on top of the other.

See this blog post for some examples: Adding watermarks, credits, badges and text overlays to images.

Add an overlay to an image by setting the overlay parameter to the public ID of a previously uploaded image. All additional transformation parameters will be applied to the overlay images instead of the original one.

The following example adds the image with the public ID of 'cloudinary_icon' as an overlay to the image with the public ID of 'mountain'. The overlay is scaled to a width of 100 pixels before being appended.

$.cloudinary.image("mountain.jpg", { overlay: "cloudinary_icon", width: 100 });

You can resize and position the overlay using the gravity, x and y parameters. You can also apply effects to the overlay and reduce its opacity to generate a watermark:

$.cloudinary.image("mountain.jpg", { overlay: "cloudinary_icon", width: 80, 
             gravity: 'south_east', x: 5, y: 5, 
             opacity: 50, effect: "brightness:200" });

In case you want to place an image underneath another image, you can use the underlay parameter. It is identical to overlay but positions the layer below the main image.

$.cloudinary.image("smartphone.png", { underlay: "site_bg.jpg", 
             width: 80, height: 80, effect: "brightness:100",
             transformation: {crop: 'fill', height: 80, width: 80} });

Text layers

You can use any image as an overlay or underlay of another image. This includes uploaded images, social profile pictures and also text layers. In order to append text layers, first you need to define your custom text style using our API. See Text creation for more details.

Appending a text overlay is done by setting the overlay parameter to 'text:STYLE-NAME:YOUR-TEXT'. Notice that the actual text should be URL encoded. The following example adds the "Hello World" text using the previously created 'bold_dark' font style:

$.cloudinary.image("face_center.png", { overlay: "text:bold_dark:Hello+World", 
             gravity: 'south_east', x: 8, y: 8 });

You can customize the size and position of the text overlay as well as chaining additional layers:

$.cloudinary.image("face_center.png", { 
           transformation: [
            { overlay: "text:bold_dark:Chained+Sample", 
              gravity: 'south', y: 5, width: 0.9, flags: 'relative' },
            { overlay: "sample_watermark", w: 50, gravity: 'north_west',
              y: 5, x: 23 }
           ]});

Fetch images

Most examples in this page discussed how your can show and manipulate images uploaded to Cloudinary, but Cloudinary can also manipulate images that already exist online, given their public HTTP URLs.

Cloudinary's "fetch" capabilities can automatically fetch images from remote URLs, store them persistently, transform them on-the-fly to match your requirements and deliver them to your users via Cloudinary's CDN. Cloudinary will even automatically refresh these images periodically in case the image in the original URL is modified.

See this blog post for more details: Delivering all your websites’ images through a CDN.

The following example embeds a remote image fetched by Cloudinary:

$.cloudinary.fetch_image("http://upload.wikimedia.org/wikipedia/commons/4/46/Jennifer_Lawrence_at_the_83rd_Academy_Awards.jpg");

The same remote image is available in the following example after turning it into a 150x150 face detection based thumbnail with rounded corners:

$.cloudinary.fetch_image("http://upload.wikimedia.org/wikipedia/commons/4/46/Jennifer_Lawrence_at_the_83rd_Academy_Awards.jpg",
                { width: 150, height: 150, crop: 'thumb', gravity: 'face', radius: 20 });

You can convert the format of fetched images by setting the fetch_format parameter to your preferred image type. The following example converted a remote PNG image to the JPG format:

$.cloudinary.fetch_image("http://upload.wikimedia.org/wikipedia/commons/e/e4/Globe.png",
                { width: 150, height: 150, crop: 'fill', fetch_format: 'jpg' });

If your images are already available in a public URL, you can set their URLs as the data-src attribute and use the $.fetchify jQuery method to update image tags to deliver all images through Cloudinary:

<img src="blank.png" class="fetch_image"
     data-src="http://mysite.example.com/myimage.jpg"/>
$(document).ready(function() {
     $(".fetch_image").fetchify();
});

More options

For a full reference of all supported transformations and their usage, refer to Transformations reference.