CompostingQuality.cs 446 B

123456789101112131415161718192021222324
  1. //
  2. // System.Drawing.CompostingQuality.cs
  3. //
  4. // Author:
  5. // Stefan Maierhofer <[email protected]>
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002 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,
  17. Default,
  18. GammaCorrected,
  19. HighQuality,
  20. HighSpeed,
  21. Invalid
  22. }
  23. }