We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Pay attention to the e's, for example:
Amazon Corretto 8: wrong rendering for font size less than 101 and other wrong rendering for font size greater than 100
Amazon Corretto 11-16, 19: wrong rendering for font size less than 101 and correct rendering for font size greater than 100
Example code: FontRederingErrorDemo.zip
Fonts with feature contextual alternates:
OS:
lsb_release -a LSB Version: 1.4 Distributor ID: Arch Description: Arch Linux Release: rolling Codename: n/a uname -a Linux 5.11.15-zen1-2-zen #1 ZEN SMP PREEMPT Sat, 17 Apr 2021 00:22:34 +0000 x86_64 GNU/Linux
It would be great if this could be fixed for OpenJDK (for all sizes).
The text was updated successfully, but these errors were encountered:
adoptium/adoptium-support#291
Sorry, something went wrong.
corretto/corretto-8#448
opened JDK-8302697
Workaround for font size less than 101:
Font font = new Font(fontName, Font.PLAIN, 100); Map map = new HashMap(); map.put(TextAttribute.LIGATURES, TextAttribute.LIGATURES_ON); font = font.deriveFont(map);
No branches or pull requests
Pay attention to the e's, for example:
Amazon Corretto 8: wrong rendering for font size less than 101 and other wrong rendering for font size greater than 100
![java-8_font_with_contextual_alternates_not_correct_rendering_below_font_size_100](https://user-images.githubusercontent.com/125954/216328603-5417e765-76a8-4870-acb9-a157959fde27.png)
Amazon Corretto 11-16, 19: wrong rendering for font size less than 101 and correct rendering for font size greater than 100
![java-19_font_with_contextual_alternates_not_correct_rendering_below_font_size_100](https://user-images.githubusercontent.com/125954/216322739-582e3afa-4a35-4dd0-8c87-56262c626e99.png)
Example code:
FontRederingErrorDemo.zip
Fonts with feature contextual alternates:
OS:
It would be great if this could be fixed for OpenJDK (for all sizes).
The text was updated successfully, but these errors were encountered: