We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
When trying to use the custom node, I keep getting the above error.
Any suggestions?
The text was updated successfully, but these errors were encountered:
Looks like textsize is deprecated in Pil
change the line 48:
from
text_width, text_height = draw.textsize(text, font=loaded_font)
to:
text_width = draw.textlength(text, font=loaded_font)
Sorry, something went wrong.
Looks like textsize is deprecated in Pil change the line 48: from text_width, text_height = draw.textsize(text, font=loaded_font) to: text_width = draw.textlength(text, font=loaded_font)
Working! Thank You!
PR #5 appears to fix this issue. @mikkel could you merge it and re-release?
No branches or pull requests
Hello,
When trying to use the custom node, I keep getting the above error.
Any suggestions?

The text was updated successfully, but these errors were encountered: