Requires:
- Python 3.6+
- Pillow 4.0+
- Django 2.0+
The Problem: So, you have build a website (portfolio, news, eshop etc), you have optimized your static files (css, js, fonts, images) but still, the webpage loads quite slow due to lots of images being rendered (however, there might be other reasons, but right now, let’s focus on the image rendering).
The Solution: Based on José Manuel
Pérez’s article about How
Medium does progressive image
loading,
I have created a Django ModelField, which I called
ProgressiveImageField
. All it does is this: when an instance’s
progressiveimagefield is created (saved, most commonly via the admin
interface), it automatically creates a very small blurred thumbnail
(maximum dimensions 10x10px
) next to the original image. When this
large image is rendered, the src
attribute of the img
element
points to the thumbnail and not the large image. So, the user,
initially, sees the blurred thumbnail. Behind the scenes, javascript
takes place and gradually downloads the original image. Once the
original image is downloaded, the blurred thumbnail is replaced through
a nice-looking-CSS-fade effect. That’s all!
Install it using pip:
pip install django-progressiveimagefield
Add it to your
INSTALLED_APPS
inside yoursettings
file:INSTALLED_APPS += ['progressiveimagefield']
Inside your models.py
, simply:
from django.db import models
from progressiveimagefield.fields import ProgressiveImageField
class MyModel(models.Model):
# Other fields here
img = ProgressiveImageField(upload_to="somewhere")
Inside your base.html
template:
{% load static %}
<!DOCTYPE html>
<html>
<head>
<!-- other meta tags here etc -->
<link rel="stylesheet" media="all" href="{% static 'progressiveimagefield/css/pif.css' %}">
</head>
<body>
{% block content %}{% endblock %}
<script src="{% static 'progressiveimagefield/js/pif.js' %}"></script>
</body>
</html>
Finally, inside another HTML template where you want to render your image progressively, you have two options depending on which template engine is used to render your template:
Using the DTL (Django Template Language)
{% load progressive_tags %} {% block content %} {% render_progressive_field instance.img %} {% endblock %}
Using the Jinja2 Template Language
Add the filter inside the file (i.e
jinja.py
) where Jinja2 Environment is definedfrom jinja2 import Environment def environment(**options): env = Environment(**options) env.filters.update({ 'progressive': 'progressiveimagefield.jinja.progressive', }) return envAdd the dotted path to the above function in your
settings
'sTEMPLATES
settingOPTIONS
dict as the value to theenvironment
key. OK, here is the code:TEMPLATES = [ { 'BACKEND': 'django.template.backends.jinja2.Jinja2', 'DIRS': # setting for DIRS here, 'APP_DIRS': True, 'OPTIONS': { 'environment': 'path.to.jinja.environment.function', }, }, ... ]Use it in your HTML template like this (just like a regular Django filter):
{% block content %} {{ instance.img|progressive }} {% endblock %}
In order to test this application, you should
- Clone the repo
- Create a virtualenv
(
mkvirtualenv -p $(which python3.6) progressiveimagefield
) and activate it (once created, it’ll be activated by default) - Install the requirements
(
pip install -r tests/test_requirements.txt
) - Run
python runtests.py
Page Load Optimization by Progressive Image Loading (like Medium)