Render unicode emojis #603
-
Drawing unicode emojis as text seem not to work. |
Beta Was this translation helpful? Give feedback.
Answered by
emcconville
Nov 30, 2022
Replies: 1 comment
-
Text rendering is usually done by freetype, and can be limited if the font supports emojis. You can also use pango for more advanced rendering. with Image(filename=u"pango:☀") as text:
img.composite(text, 75, 275) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Randalix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Text rendering is usually done by freetype, and can be limited if the font supports emojis. You can also use pango for more advanced rendering.