While working on a text render algorithm, I stumbled across a strange behavior of the Graphics.MeasureString()
method.
It seems like it internally trims the end of a string.
g.MeasureString("d", font).Width //is 13.289278
g.MeasureString("d ", font).Width //is 13.2892771
g.MeasureString(" d", font).Width //is 17.4858913
//font.Size = 11; font.FontFamily = "Arial";
Can someone explain this behaviour?
As from MSDN description of
MeasureTrailingSpaces
format flag:So if you will provide this flag - results will be the same