1 # -*- coding: utf-8 -*-
2 ############################################################
3 # Copyright © 2005-2008 Benoît PIN <benoit.pin@ensmp.fr> #
4 # Plinn - http://plinn.org #
6 # This program is free software; you can redistribute it #
7 # and/or modify it under the terms of the Creative Commons #
8 # "Attribution-Noncommercial 2.0 Generic" #
9 # http://creativecommons.org/licenses/by-nc/2.0/ #
10 ############################################################
16 from Globals
import package_home
18 from PIL
.Image
import open as imgopen
19 from ImageDraw
import Draw
20 from PIL
.ImageDraw
import Draw
21 from PIL
.ImageFont
import truetype
22 from Products
.Portfolio
.Extensions
import fontdir
23 from Products
.Photo
.cache
import memoizedmethod
27 self
._methodResultsCache
= {}
29 @memoizedmethod('name', 'size', 'index')
30 def get(self
, name
, size
, index
) :
31 fontfile
= path
.join(fontdir
, name
)
32 font
= truetype(fontfile
, size
, index
=index
)
36 fontCache
= FontCache()
39 def addWatermark(self
, image
, text
, size
=20, margin_right
=10, margin_bottom
=10, font
='verdana.ttf', index
=0, encoding
='utf-8') :
41 font
= fontCache
.get(font
, size
, index
)
42 text
= text
.decode(encoding
)
43 tw
, th
= font
.getsize(text
)
48 left
, top
= (iw
- tw
- margin_right
, ih
- th
- margin_bottom
)
50 d
.text((left
, top
), text
, font
= font
)