Django integration

Overview

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

With Cloudinary you can easily upload images to the cloud, automatically perform smart image manipulations without installing any complex software. All your images are then seamlessly delivered through a fast CDN, optimized and using industry best practices. Cloudinary offers comprehensive APIs and administration capabilities and is easy to integrate with new and existing web and mobile applications.

Quick example

Take a look at the following Cloudinary URL that generates the image below:

Simply accessing the above URL told Cloudinary to transform an uploaded image, create a 150x150px thumbnail using face detection based cropping, round the image's corners, add a sepia effect, convert it to a transparent PNG format, add a watermark layer, rotate the image by 10 degrees and ultimately delivered the resulting image through a fast CDN using smart caching techniques.

Python Library Features

Cloudinary provides an open source Python library for further simplifying the integration with your Python and Django applications:

  • Build URLs for image transformation & manipulation.
  • Django form and model integration classes.
  • Django template tags for embedding and transforming images.
  • API wrappers: image upload, administration, sprite generation and more.
  • Direct image uploading from the browser using a jQuery plugin.

The library was tested with Python 2.5+ and Django 1.4+.

Django - Getting started guide

1Installation

Cloudinary's Django integration library is available as an open-source Python code.

You can install Cloudinary's module using either easy_install or pip package management tools:

pip install cloudinary

Include Cloudinary's Python classes in your code:

import cloudinary
import cloudinary.uploader
import cloudinary.api

Initalize Cloudinary tags in your Django templates:

{% load cloudinary %}

2Configuration

Your cloud_name account parameter is required to build image URLs. api_key and api_secret are further needed to perform secure API calls to Cloudinary (e.g., image uploads). See API, URLs and access identifiers for more details.

Setting the configuration parameters can be done either programmatically in each call to a Cloudinary method or globally using an environment variable or the config method.

You can find your configuration parameters in the dashboard of our Management Console.

Here's an example of setting configuration parameters globally in your Django application:

cloudinary.config( 
  cloud_name = "sample", 
  api_key = "874837483274837", 
  api_secret = "a676b67565c6767a6767d6767f676fe1" 
)

See Configuration Options for more details and additional configuration methods.

3Upload images

You can upload images and any other files from your Django server. Uploading is done over HTTPS using a secure protocol based on the api_key and api_secret parameters you provide.

The following command uploads a local file to Cloudinary:

cloudinary.uploader.upload("my_picture.jpg")

Alternatively, you can a specify a local path, a public HTTP URL, an S3 URL, an IO stream or an actual image file's data. For example:

cloudinary.uploader.upload("http://www.example.com/image.jpg")

Each image uploaded to Cloudinary is assigned a unique Public ID and is available for immediate delivery and transformation. The upload method returns an associative array with content similar to that shown in the following example:

{
 u'public_id': u'sample',
 u'version': 1312461204,
 u'width': 864
 u'height': 576,
 u'format': u'jpg',
 u'bytes': 120253,       
 u'url': u'http://res.cloudinary.com/demo/image/upload/v1371281596/sample.jpg',
 u'secure_url': u'https://res.cloudinary.com/demo/image/upload/v1371281596/sample.jpg',       
}

As you can see in the following example, with a single call you can define your own Public ID, apply an incoming image transformation before storing the image in the cloud, generate derived images eagerly and assign tags to uploaded images:

cloudinary.uploader.upload(
  request.FILES['file'],      
  public_id = 'sample_id', 
  crop = 'limit',
  width = 2000,
  height = 2000,
  eager = [
    { 'width': 200, 'height': 200, 
      'crop': 'thumb', 'gravity': 'face',
      'radius': 20, 'effect': 'sepia' },
    { 'width': 100, 'height': 150, 
      'crop': 'fit', 'format': 'png' }
  ],                                     
  tags = ['special', 'for_homepage']
)

Many more upload options as well as direct image uploading from the browser are detailed here: Django image upload.

Cloudinary supports uploading videos as well. See Upload videos documentation page for more details.

4Display and manipulate images

Adding images to your Django application is quite straightforward. Just use the image method of the CloudinaryImage class. This method generates the full image resource URL based on the given parameters and internally uses image tag to add the image to your HTML code:

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

cloudinary.CloudinaryImage("sample.jpg").image(alt = "Sample Image")
864x576 JPG (Scaled down)

Now, let's say that you wish to display a small thumbnail of this uploaded image. Simply add the transformation instructions to your call. For example, displaying the 'sample' image transformed to fill a 100x150 rectangle:

cloudinary.CloudinaryImage("sample.jpg").image(width = 100, height = 150, crop = 'fill')
100x150 JPG

This is equivalent to:

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

Alternatively, you can use Cloudinary's Django template tag:

{% cloudinary "sample.jpg" width=100 height=150 crop="fill" %}

Using simple parameters you can perform powerful image manipulations. The Python library builds Cloudinary URLs that you can embed in your web and mobile views for dynamically transforming your uploaded images in the cloud and delivering the results through a fast CDN with advanced caching.

You can easily convert image formats, resize your images, perform face detection based cropping, apply effects and filters, append textual layers or watermarks and more.

The following command, for example, embeds a JPG thumbnail of a profile photo fetched from Facebook in real-time, crops it to a circle, applies a sepia effect and delivers it optimized through a CDN:

cloudinary.CloudinaryImage("billclinton.jpg", type = 'facebook').image(
        width = 90, height = 98, 
        crop = 'fill', gravity = 'face',
        radius = 'max', effect = 'sepia')
90x98 JPG

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

For more details about Cloudinary's image transformation and manipulation in Django, see Django image manipulation.

Videos can be delivered and manipulated as well. See Video manipulation and delivery documentation page for more details.

5Sample projects

To find additional useful code samples and learn how to integrate Cloudinary with your Django applications, take a look at our Sample Projects.

Basic Python sample: Uploading local and remote images to Cloudinary and generating various transformation URLs.

Django Photo Album: A fully working web application that allows you to uploads photos, maintain a database with references to them, list them with their metadata, and display them using various cloud-based transformations. Image uploading is performed both from the server side and directly from the browser using a jQuery plugin.

6What's next

Sign up for a free account if you haven't done so already. Follow the steps above and try Cloudinary out. Finished all steps? That's just an example of what Cloudinary can offer. Here's some additional reading material to help you get the best out of Cloudinary:

Learn more about Django image upload.

Explore powerful Django image manipulation features and see our Image transformations docs.

Browse additional Django integration topics: configuration, Admin API, etc.

Stay tuned for updates, tips and tutorials: Blog, Twitter, Facebook.