-
Notifications
You must be signed in to change notification settings - Fork 26
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
iPhone problem: font-feature-settings: "calt" Limbo; #29
Comments
Hi, I can reproduce this, but, I don't think it's a problem with the font, as I can use the fonts on iOS (13.7) Safari (NOTE: font version is 1.006, newer than the one currently at google fonts): ean13-testing page screenshot from IPhone. This lead to a strange finding though. May not be the case for the current version 1.004 now on Google Fonts, as I am using v1.006 which is not yet updated there!: The complex symbol selection of the font is done using OpenType Feature substitutions, namely the /* CSS */
.ean13 {
font-family: "Libre Barcode EAN13 Text";
font-feature-settings: "calt" 0;
} When /* CSS */
.ean13 {
font-family: "Libre Barcode EAN13 Text";
} In CSS, using "font-feature-settings: "calt" 1;" fixes it! /* CSS */
.ean13 {
font-family: "Libre Barcode EAN13 Text";
font-feature-settings: "calt" 1;
} Using So there's apparently a third mode in iOS, one between on and off. 🤬 I suggest waiting for the update at Google Fonts to version 1.006 before reporting there. But eventually, this seems like a bad implementation by Apple, and I don't know how to report issues efficiently to them. |
Works in macOS Safari, but not iOS, so that's some weird rendering bug cc @nedley. |
Hi, |
@timrobinson81 thanks. However, I'll keep this open until its properly documented. You can unsubscribe from notifications if you like. |
Hi everyone,
Hope you're all well.
If you look at this link below on an iPhone, 'Libre Barcode EAN13 Text' on Google Fonts renders only numbers and doesn't appear like a bar-code as it does on other devices:
https://bit.ly/2TUo3Tp
Many thanks and kind regards,
Tim
The text was updated successfully, but these errors were encountered: