Anti alias mode differences?

2019-04-05 02:15发布

问题:

Is there a difference between these two Anti Alias modes?

e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias

e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality

I've tested both methods and can't see any difference.

回答1:

There is no difference. See http://msdn.microsoft.com/en-us/library/z714w2y9.aspx :

AntiAlias and HighQuality are equivalent and specify rendering with smoothing applied.