This template filter converts email text to image with the email text. It uses PIL and it makes the image as high and wide as the text.
This template filter is intended to be used as anti-spider protection.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | from PIL import Image, ImageDraw, ImageFont
import md5
import os
import sys
def mailhide(value):
email_md5 = md5.new(value).hexdigest()
email_path = os.path.join(MEDIA_ROOT, EMAIL_THUMBNAILS).replace('\\', '/')
em_file_path = os.path.join(email_path, email_md5 + '.png').replace('\\', '/')
if not os.path.exists(email_path):
os.mkdir(email_path)
if not os.path.exists(em_file_path):
img = Image.new('RGBA',(1,1))
font = ImageFont.truetype(FONT_PATH, FONT_SIZE)
draw = ImageDraw.ImageDraw(img)
w,h = draw.textsize(value, font = font)
img = img.resize((w,h))
draw = ImageDraw.ImageDraw(img)
draw.text((0,0),value, font = font, fill = FONT_COLOR)
img.save(em_file_path)
result = '<img src = "%s%s/%s.png"/>'%(MEDIA_URL, EMAIL_THUMBNAILS,email_md5)
return mark_safe(result)
|
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, 7 months ago
Comments
Also, if you change
into
it anti-aliases non-black fonts correctly. You can also remove
and replace it with
#
Please login first before commenting.