A Django view to create an image gradient on the fly as a PNG file. The direction, size and colors of the gradient a specified in the filename and extracted by Django in the urls.py.
Example usage from CSS:
background: url(/gradient-down-255,255,255-to-0,0,0-70-of-120.png) repeat-x;
creates a 70-pixel vertical gradient as background from white to gray. No static images needed. To modify, nothing but the CSS needs to be edited.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | from django.http import HttpResponse, Http404
from django.views.decorators.cache import cache_control
from PIL import Image
@cache_control(max_age=3600*24*30)
def gradient(request, direction, r1, g1, b1, r2, g2, b2, size, grad_size):
"""
Create an image gradient on the fly as a PNG file.
Arguments:
direction
The direction of the gradient as 'left', 'right', 'up' or 'down'.
r1, g1, b1, r2, g2, b2
RGB Values for the start and the end of the gradient. (0 to 255)
size
The width or height of the generated image.
grad_size
The width or height of the gradient. If greater than 'size', the
invisible part of the gradient is simply discarded.
Use a regular expression like this in urls.py:
r'^gradient-([a-z]*)-([0-9]*),([0-9]*),([0-9]*)-to-([0-9]*),([0-9]*),([0-9]*)-([0-9]*})-of-([0-9]*).png$'
Example usage from CSS:
'background: url(/gradient-down-255,255,255-to-0,0,0-70-of-120.png) repeat-x;'
Author: Jens Breit
"""
rgb1 = (int(r1),int(g1),int(b1))
rgb2 = (int(r2),int(g2),int(b2))
size = int(size)
grad_size = int(grad_size)
# validate input ranges
for z in rgb1 + rgb2:
if z < 0 or z > 255:
raise Http404
if size > 2000:
raise Http404
# create image
if direction == 'up' or direction == 'down':
im = Image.new('RGB', (1, size))
elif direction == 'left' or direction == 'right':
im = Image.new('RGB', (size, 1))
else:
raise Http404 # because of invalid direction
def channel(i, c):
"""calculate the value of a single color channel for a single pixel"""
return rgb1[c] + int((i * 1.0 / grad_size) * (rgb2[c] - rgb1[c]))
def color(i):
"""calculate the RGB value of a single pixel"""
return tuple([channel(i, c) for c in range(3)])
gradient = [ color(i) for i in xrange(size) ]
if direction == 'up' or direction == 'left':
gradient.reverse()
# put gradient into image
im.putdata(gradient)
# send image
r = HttpResponse()
r['Content-Type'] = 'image/png'
im.save(r, 'PNG')
return r
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.