mirror of
https://github.com/EdgeTX/edgetx.git
synced 2025-07-19 14:25:09 +03:00
Better fit the fonts inside the font-bitmaps
This commit is contained in:
parent
aeb297c800
commit
90364c2695
1 changed files with 2 additions and 2 deletions
|
@ -107,7 +107,7 @@ class FontBitmap:
|
|||
self.extra_bitmap = None
|
||||
continue
|
||||
elif is_cjk_char(c):
|
||||
w = self.draw_char(image, width, c, -3)
|
||||
w = self.draw_char(image, width, c, 3)
|
||||
else:
|
||||
w = self.draw_char(image, width, c)
|
||||
|
||||
|
@ -118,7 +118,7 @@ class FontBitmap:
|
|||
|
||||
_, top, _, bottom = self.get_real_size(image)
|
||||
|
||||
top = 1
|
||||
top = bottom - self.font_size - 2
|
||||
# bottom = self.font_size
|
||||
image = image.crop((0, top, width - 1, bottom))
|
||||
coords.insert(0, bottom - top + 1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue