-
Notifications
You must be signed in to change notification settings - Fork 25
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
trying to use this font in firefox #115
Comments
Firefox simply does not support this color font format (CBDT/CBLC), so it's not a specific bug for this font. (Although it might work if it's the system's default emoji font, but I'm not sure. It definitely won't work with CSS, etc.) Not sure if that's really the reason for that error message, but even if it isn't, it wouldn't work anyway, sorry. |
in the issue i passed it says that it supports CBDT/CBLC for freetype, so maybe release it like that too? I ended up using the noto emoji release that is text-based because thats what I currently need, is there a way to make blobmoji text-based? |
FreeType is a common font rendering engine on Linux, so it's OS-specific. They also say that these fonts are deliberately blocked, because they are not supported by all operating systems and that they wanted to include a preference to allow it anyway. As for the text-based format, there is no way to make it work with that as it would essentially mean recreating the whole font. |
So, you should be able to enable it in |
Just wanted to drop in to mention that BlobmojiWindows.ttf and BlobmojiWindowsDefaultReplacement.ttf won't throw an error in Firefox, but will always show up empty. Tested with Blobmoji Version 15 under Windows 10 To improve compatibility you could perhaps also provide a font file in the SVG format (these do also exist) and perhaps even a WOFF/WOFF2 in the future. And should you do something like that you might as well include a CSS file to easily import them at that point: @font-face {
font-family: "Blobmoji";
src: url("./Blobmoji.ttf") format("truetype");
font-style: normal;
font-weight: normal;
text-rendering: optimizeLegibility;
}
.blobmoji {
font-family: "Blobmoji";
} |
im using this font in css but it doesnt load and just returns this
in chrome it does work, so idk. Wasn't sure if I should report this. I found issues like this so yeah
The text was updated successfully, but these errors were encountered: