changing MLB logo size to 32 px

This commit is contained in:
ChuckBuilds
2025-04-27 12:18:23 -05:00
parent d87df32e70
commit 23a904fac3

View File

@@ -104,8 +104,8 @@ class BaseMLBManager:
draw = ImageDraw.Draw(image) draw = ImageDraw.Draw(image)
# Set logo size to match NHL (150% of display width) # Set logo size to match NHL (150% of display width)
max_width = int(width * 1.5) max_width = 35
max_height = int(height * 1.5) max_height = 35
logo_size = (max_width, max_height) logo_size = (max_width, max_height)
logo_y_offset = (height - max_height) // 2 logo_y_offset = (height - max_height) // 2