Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install django-nginx-image

How to install django-nginx-image

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install django-nginx-image
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.2
0.3Never BuiltWhy not?
0.2 Available View build log
Windows (64-bit)
Mac OS X (10.5+)
0.2
0.3Never BuiltWhy not?
0.2 Available View build log
Linux (32-bit)
0.2
0.3Never BuiltWhy not?
0.2 Available View build log
Linux (64-bit)
0.3 Available View build log
0.2 Available View build log
 
License
BSD
Dependencies
Lastest release
version 0.3 on May 26th, 2013
http://adw0rd.com/media/uploads/django_nginx_image.jpg

Resizing and cropping images via Nginx, as well as caching the result

pip install django-nginx-image

Features:

  • High-performance resize and crop via Nginx
  • Transparent caching an images
  • Template tag thumbnail for building correct URL for Nginx
  • The Django command for convert unsupported images formats (example, BMP) to JPG

For more details see:

Settings:

Add to settings.py:

INSTALLED_APPS = (
    'nginx_image',
)

Now, add two sections called server:

  1. The cache server www.example.org, which will connect to the second server and receive changed image and save the result to the cache.
  2. The image server image.example.org, which can to resize and to crop a images.
http://adw0rd.com/media/uploads/django-nginx-image.jpg

A sample of configuration file for your project:

http {

    proxy_cache_path <STORAGE_ROOT>/nginx/cache levels=1:2 keys_zone=<CACHE_NAME>:10m max_size=1G;

    server {
        listen 80;
        server_name www.example.org;

        location ~* ^/(resize|crop)/ {
            proxy_pass http://image.example.org$request_uri;
            proxy_cache <CACHE_NAME>;
            proxy_cache_key "$host$document_uri";
            proxy_cache_valid 200 1d;
            proxy_cache_valid any 1m;
            proxy_cache_use_stale error timeout invalid_header updating;
        }
    }

    server {
        listen 80;
        server_name image.example.org;

        location ~* ^/resize/([\d\-]+)/([\d\-]+)/(.+)$ {
            alias <STORAGE_ROOT>/$3;
            image_filter resize $1 $2;
            image_filter_buffer 2M;
            error_page 415 = /empty;
        }

        location ~* ^/crop/([\d\-]+)/([\d\-]+)/(.+)$ {
            alias <STORAGE_ROOT>/$3;
            image_filter crop $1 $2;
            image_filter_buffer 2M;
            error_page 415 = /empty;
        }

        location = /empty {
            empty_gif;
        }
    }
}

Where, STORAGE_ROOT is the path to directory with web-assests. For example I have in my settings.py:

STORAGE_ROOT = "/storage/kinsburg_tv"
MEDIA_ROOT = os.path.join(STORAGE_ROOT, "media")
STATIC_ROOT = os.path.join(STORAGE_ROOT, "static")

And "CACHE_NAME" is the arbitrarily name, example: "my_project_cache".

Usage:

In the templates can be used as follows:

{% load nginx_image %}

Proportionally resize a image, based on the width and the height:
    {% thumbnail user.profile.avatar 130 130 %}

Proportionally resize a image, based on the width:
    {% thumbnail user.profile.avatar 130 '-' %}
    {% thumbnail user.profile.avatar 130 0 %}
    {% thumbnail user.profile.avatar 130 %}

Proportionally resize a image, based on the height:
    {% thumbnail user.profile.avatar '-' 130 %}
    {% thumbnail user.profile.avatar 0 130 %}

Crop a image:
    {% thumbnail user.profile.avatar 130 130 crop=1 %}
    {% thumbnail user.profile.avatar 130 0 crop=1 %}
    {% thumbnail user.profile.avatar 0 130 crop=1 %}

Convert:

Unfortunaly, ngx_http_image_filter_module only supports JPEG, GIF and PNG, so you have to convert BMP to JPG:

./manage.py nginx_image_converter -i /storage/project/media -o /storage/project/newmedia

Available options:

-i SOURCE, --source=SOURCE
                    Source directory with pictures
-o DESTINATION, --destination=DESTINATION
                    Destination directory for save the pictures
-q QUALITY, --quality=QUALITY
                    Percentage of quality for images in JPG
-e, --change-extension
                    Change extension to "jpg"

Subscribe to package updates

Last updated May 26th, 2013

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.