CompostingQuality.cs 483 B

123456789101112131415161718192021222324
  1. //
  2. // System.Drawing.Drawing2D.CompostingQuality.cs
  3. //
  4. // Author:
  5. // Stefan Maierhofer <[email protected]>
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002/3 Ximian, Inc
  9. //
  10. using System;
  11. namespace System.Drawing.Drawing2D {
  12. /// <summary>
  13. /// Summary description for CompostingQuality.
  14. /// </summary>
  15. public enum CompositingQuality {
  16. AssumeLinear = 4,
  17. Default = 0,
  18. GammaCorrected = 3,
  19. HighQuality = 2,
  20. HighSpeed = 1,
  21. Invalid = -1
  22. }
  23. }