ImageAttributes.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. //
  2. // System.Drawing.Imaging.ImageAttributes.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. // (C) 2002 Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. using System.Drawing;
  10. namespace System.Drawing.Imaging
  11. {
  12. /// <summary>
  13. /// Summary description for ImageAttributes.
  14. /// </summary>
  15. public sealed class ImageAttributes : ICloneable, IDisposable {
  16. public ImageAttributes() {
  17. }
  18. //Clears the color keys for all GDI+ objects
  19. public void ClearColorKey(){
  20. }
  21. //Sets the color keys for all GDI+ objects
  22. public void SetColorKey(Color colorLow, Color colorHigh){
  23. }
  24. public void SetColorMatrix(ColorMatrix colorMatrix) {
  25. throw new NotImplementedException();
  26. }
  27. public void SetColorMatrix(ColorMatrix colorMatrix, ColorMatrixFlag colorMatrixFlag) {
  28. throw new NotImplementedException();
  29. }
  30. public void SetColorMatrix(ColorMatrix colorMatrix, ColorMatrixFlag colorMatrixFlag, ColorAdjustType colorAdjustType) {
  31. throw new NotImplementedException();
  32. }
  33. public void Dispose() {
  34. }
  35. ~ImageAttributes() {
  36. }
  37. [MonoTODO]
  38. object ICloneable.Clone()
  39. {
  40. throw new NotImplementedException ();
  41. }
  42. }
  43. }