Disable overlap check in image.combine().
This commit is contained in:
parent
038e4f06e9
commit
a56fa55709
1 changed files with 3 additions and 2 deletions
|
|
@ -42,8 +42,9 @@ def overlap(*images):
|
||||||
|
|
||||||
|
|
||||||
def combine(*images):
|
def combine(*images):
|
||||||
if overlap(*images):
|
# TODO: properly combine overlapping glyphs
|
||||||
raise NotImplementedError
|
# if overlap(*images):
|
||||||
|
# raise NotImplementedError
|
||||||
|
|
||||||
left, top, right, bottom = bbox(*images)
|
left, top, right, bottom = bbox(*images)
|
||||||
width = right - left
|
width = right - left
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue