Disable overlap check in image.combine().

This commit is contained in:
Andrey Golovizin 2014-08-26 17:41:22 +02:00
parent 038e4f06e9
commit a56fa55709

View file

@ -42,8 +42,9 @@ def overlap(*images):
def combine(*images):
if overlap(*images):
raise NotImplementedError
# TODO: properly combine overlapping glyphs
# if overlap(*images):
# raise NotImplementedError
left, top, right, bottom = bbox(*images)
width = right - left