Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anti alias mode differences?

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.

like image 352
Sam Avatar asked Apr 10 '13 12:04

Sam


1 Answers

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.

like image 93
Sebastian Mach Avatar answered Oct 20 '22 16:10

Sebastian Mach