1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-13 11:29:51 +03:00

Cosmetics

This commit is contained in:
Bertrand Songis 2019-12-09 16:17:41 +01:00
parent 25df4881b6
commit 45a75c1c2b
No known key found for this signature in database
GPG key ID: F189F79290FEC50F

View file

@ -46,7 +46,7 @@ class FontBitmap:
@staticmethod
def is_column_needed(px, x, height):
for y in range(height):
if px[x, y] != (255, 255, 255):
if sum(px[x, y]) <= 3 * 0xC6:
return True
return False
@ -89,7 +89,6 @@ class FontBitmap:
def generate(self, filename, generate_coords_file=True):
coords = []
image = Image.new("RGB", (len(self.chars) * self.font_size, self.font_size + 10), self.background)
draw = ImageDraw.Draw(image)
width = 0
for c in self.chars: