Andrew Murray
Andrew Murray
It may or may not be helpful, but could we get the full traceback, not just the error string? So the output of ```python convert_emoji_to_png("🚶➡️") ``` not just ```python try:...
I attempted to replicate in macOS 14 arm64 on GitHub Actions, with ``` brew update brew install [email protected] pillow freetype fribidi harfbuzz libpng libraqm ``` but [it passed](https://github.com/radarhere/Pillow/actions/runs/8201885913/job/22431524939).
If you install Pillow from this PyPI wheel, does the problem still occur? https://files.pythonhosted.org/packages/9d/a0/28756da34d6b58c3c5f6c1d5589e4e8f4e73472b55875524ae9d6e7e98fe/pillow-10.2.0-cp312-cp312-macosx_11_0_arm64.whl I don't expect it to fix it, but if the error still occurs with this, that...
Could you describe in words what you're expecting? The sequence of unicode characters being requested is - woman, zero width joiner, manual wheelchair, zero width joiner, black rightwards arrow, variation...
> What character did you trim exactly ? I find that running ```python convert_emoji_to_png("👩🦽➡️"[:-2], 'test') ``` works. So from your [emoji source](https://unicode.org/Public/emoji/latest/emoji-test.txt), I find that 'woman in manual wheelchair', [works](https://github.com/radarhere/Pillow/actions/runs/9229707410),...
I've sent an e-mail to FreeType asking them if they have any thoughts. Hi, Over at Python Pillow, a user has tried to render an emoji with macOS’ Apple Color...
I still need to continue the conversation with FreeType, but here is part of the initial response. > Looking at this report it seems that somehow the image should be...
Ok, after some further investigation, I found that the graphic type 'flip' is being used. This is a new feature from Apple (I can't even find documentation about it), and...
The FreeType issue has now been resolved. The next step is to wait for a FreeType release.
FreeType 2.14.0 has been released, so this should now be fixed. Are you able to try again?