Win32 Font Cropping Issue

I am trying to track down a very bizarre Win32 issue that I am having with a couple fonts in our game. The fonts we use all work correctly on all other platforms ( Android, iOS, OS X ), this problem is only on windows ( both in simulator and standalone builds )

The first issue is strange in that it will appear and disappear based on the size of the application, below are two examples images from the simulator, one at the iPad @2x and the other iPad @3x.

Borderless iPad @2xhttps://drive.google.com/file/d/0Bz7BW07ngYdnMWh0M2trU0pIN1k/view?usp=sharing

Borderless iPad @3xhttps://drive.google.com/file/d/0Bz7BW07ngYdnQ3l6c21iNUJrM0k/view?usp=sharing

Each is running the same code, rendering 3 texts with rectangles drawn behind them to showcase their content width and height.

The first two texts have no specified width or height. The first line of text is font size 138, the second line of text is the same string but drawn at font size 139. As you can see font size 138 both are drawn normally on both devices, but 139 is drawn incorrectly at size @3x.

In the case where the Y is missing 139 the it is because the Y is actually being placed on the next line, this can be verified by specifying a width of screen width and then any height that is large enough to see the next line.

It is almost as if the text object is being assigned a default width which is then not big enough to fit the text.

Interesting to note, putting a space at the end of the string supplied to the text object causes it to behave correctly, or at least I cant find a font size that will mess it up.

Moving on to the next (3rd) line of the images, this text object has a width specified and this issue does not vary between player sizes. The leading character is being slightly cut off by the edge of the text object. With two of the fonts I have tested this will occur only when the alignment is specified to be center and the line is almost the exact width specified for the text object.

I am not sure that I should submit a bug report since I suppose it could still be a font issue, but seeing as it works *perfectly* on all other platforms I thought I would at least see what you guys think. I cannot reproduce this issue with monospace fonts, but at the same time this problem is purely windows and occurs with multiple non-mono fonts so I am not convinced that it is purely a font issue.

Attached is the project that I used to create the screenshots that demo this problem. Other fonts are included and the non-mono fonts will exhibit the same issue, though at different font / player sizes. For instance, changing game_font to “Lassiter” and running the game at iPad @1x will cause both lines of text to lose their Y’s while @2x and @3x bother render correctly.

Thanks for the help!

  • Ian

As an update to the second of the two issues, I have been able to reproduce is with the native.systemFont on Windows so this definitely strikes me as a bug.

System Native Font: https://drive.google.com/file/d/0Bz7BW07ngYdnMm1VYVdzamo0VWM/view?usp=sharing

I have submitted a bug regarding the windows native font being occasionally clipped when a width is specified for center aligned text using the native font. Case: 6537156

I see you’ve filed a bug report on this.

Thanks

Rob

Ian,

This Windows issue is fixed in daily build #2994, which you can download here…

   https://developer.coronalabs.com/release/2016/2994

In fact, we’ve significantly improved the overall text rendering quality on Windows.  Text rendering is now pixel aligned, which means it’ll ignore the font’s built-in character spacing since that would cause characters to land on fractional screen pixel coordinates.  The same characters in a single line of text didn’t used to be rendered consistently (random edges would be blurry).  That’s now solved since it’s pixel aligned.  However, you will notice that the character positioning will be slightly different, but we’ve decided that the overall text quality improvement was worth it since blurry text is very noticeable on low to average DPI screens.

Perfect, thanks for the fix! This has completely solved this issues I was having.

Cheers!

As an update to the second of the two issues, I have been able to reproduce is with the native.systemFont on Windows so this definitely strikes me as a bug.

System Native Font: https://drive.google.com/file/d/0Bz7BW07ngYdnMm1VYVdzamo0VWM/view?usp=sharing

I have submitted a bug regarding the windows native font being occasionally clipped when a width is specified for center aligned text using the native font. Case: 6537156

I see you’ve filed a bug report on this.

Thanks

Rob

Ian,

This Windows issue is fixed in daily build #2994, which you can download here…

   https://developer.coronalabs.com/release/2016/2994

In fact, we’ve significantly improved the overall text rendering quality on Windows.  Text rendering is now pixel aligned, which means it’ll ignore the font’s built-in character spacing since that would cause characters to land on fractional screen pixel coordinates.  The same characters in a single line of text didn’t used to be rendered consistently (random edges would be blurry).  That’s now solved since it’s pixel aligned.  However, you will notice that the character positioning will be slightly different, but we’ve decided that the overall text quality improvement was worth it since blurry text is very noticeable on low to average DPI screens.

Perfect, thanks for the fix! This has completely solved this issues I was having.

Cheers!