Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue: PIL deprecated the textsize() method in 10.0.0 #74

Open
goocy opened this issue Mar 5, 2024 · 0 comments · May be fixed by #75
Open

Issue: PIL deprecated the textsize() method in 10.0.0 #74

goocy opened this issue Mar 5, 2024 · 0 comments · May be fixed by #75

Comments

@goocy
Copy link

goocy commented Mar 5, 2024

cocoviewer.py, line 183:
tw, th = draw.textsize(text, font)
PIL deprecated the textsize() method in 10.0.0:
https://pillow.readthedocs.io/en/stable/releasenotes/10.0.0.html

Proposed fix:

x1, y1, x2, y2 = font.getbbox(text)
tw, th = (x2-x1, y2-y1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant