From 770de152970e29139c6abf4973c9041a5ba64805 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Mon, 10 Jul 2023 17:05:23 -0500 Subject: [PATCH] remove ImageFont.getsize() usage for Pillow 10.0.0 --- fontio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fontio.py b/fontio.py index 3a502af..a9200c9 100644 --- a/fontio.py +++ b/fontio.py @@ -75,7 +75,7 @@ class BuiltinFont: """Returns the maximum bounds of all glyphs in the font in a tuple of two values: width, height. """ - return self._font.getsize("M") + return self._font.getbbox("M")[2:4] def get_glyph(self, codepoint): """Returns a `fontio.Glyph` for the given codepoint or None if no glyph is available.""" @@ -84,7 +84,7 @@ class BuiltinFont: else: return None - bounding_box = self._font.getsize(chr(codepoint)) + bounding_box = self._font.getbbox(chr(codepoint))[2:4] width, height = bounding_box return Glyph( bitmap=self._bitmap, -- 2.49.0