You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the freetype2 embedded library that freetype-py includes is built without PNG support so loading emoji fonts doesn't work. One has to build their own freetype2 library with color support and have freetype-py load from that.
the setup-build-freetype.py script is configured to disable external dependencies, for good reasons since we want to make sure the compiled library is standalone and portable:
Maybe we could see if we can also build the other external dependencies (zlib, png, perhaps even harfbuzz) and statically link them into the shared library that we are embedding in the freetype-py distribution.
The text was updated successfully, but these errors were encountered:
Currently the freetype2 embedded library that freetype-py includes is built without PNG support so loading emoji fonts doesn't work. One has to build their own freetype2 library with color support and have freetype-py load from that.
the setup-build-freetype.py script is configured to disable external dependencies, for good reasons since we want to make sure the compiled library is standalone and portable:
freetype-py/setup-build-freetype.py
Lines 143 to 146 in c578643
Maybe we could see if we can also build the other external dependencies (zlib, png, perhaps even harfbuzz) and statically link them into the shared library that we are embedding in the freetype-py distribution.
The text was updated successfully, but these errors were encountered: