Fix incorrect widths of spaces between words.
This commit is contained in:
parent
1847bbcd9e
commit
b7d6319ebf
1 changed files with 1 additions and 1 deletions
|
|
@ -242,7 +242,7 @@ class Line(PageObject):
|
||||||
if next_glyph is not None:
|
if next_glyph is not None:
|
||||||
distance = glyph.optical_distance(next_glyph)
|
distance = glyph.optical_distance(next_glyph)
|
||||||
if distance >= min_distance:
|
if distance >= min_distance:
|
||||||
space_after = Space(self, self.image.space(glyph.right, self.top, distance, self.height), self.baseline - self.top)
|
space_after = Space(self, self.image[:, glyph.right:next_glyph.left], self.baseline - self.top)
|
||||||
yield Word(self, current_word_glyphs, space_after)
|
yield Word(self, current_word_glyphs, space_after)
|
||||||
current_word_glyphs = []
|
current_word_glyphs = []
|
||||||
if current_word_glyphs:
|
if current_word_glyphs:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue