fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
#1868: check uri pattern in strict mode
[librarian.git]
/
librarian
/
cover.py
diff --git
a/librarian/cover.py
b/librarian/cover.py
index
23603d6
..
925449e
100644
(file)
--- a/
librarian/cover.py
+++ b/
librarian/cover.py
@@
-3,6
+3,7
@@
# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
+import re
import Image, ImageFont, ImageDraw, ImageFilter
from librarian import get_resource
import Image, ImageFont, ImageDraw, ImageFilter
from librarian import get_resource
@@
-36,6
+37,7
@@
class TextBox(object):
def text(self, text, color='#000', font=None, line_height=20,
shadow_color=None):
"""Writes some centered text."""
def text(self, text, color='#000', font=None, line_height=20,
shadow_color=None):
"""Writes some centered text."""
+ text = re.sub(r'\s+', ' ', text)
if shadow_color:
if not self.shadow_img:
self.shadow_img = Image.new('RGBA', self.img.size)
if shadow_color:
if not self.shadow_img:
self.shadow_img = Image.new('RGBA', self.img.size)