ImageFormat.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //
  2. // System.Drawing.Imaging.ImageFormat.cs
  3. //
  4. // (C) 2002 Ximian, Inc. http://www.ximian.com
  5. // Author: Everaldo Canuto
  6. // eMail: [email protected]
  7. // Dennis Hayes ([email protected])
  8. //
  9. using System;
  10. namespace System.Drawing.Imaging {
  11. public sealed class ImageFormat {
  12. // constructors
  13. //[MonoTODO]
  14. public ImageFormat(Guid guid) {
  15. throw new NotImplementedException ();
  16. }
  17. // methods
  18. //[MonoTODO]
  19. public override bool Equals(object o) {
  20. throw new NotImplementedException ();
  21. }
  22. //[MonoTODO]
  23. public override int GetHashCode() {
  24. throw new NotImplementedException ();
  25. }
  26. //[MonoTODO]
  27. public override string ToString() {
  28. throw new NotImplementedException ();
  29. }
  30. // properties
  31. //[MonoTODO]
  32. public static ImageFormat Bmp {
  33. get { throw new NotImplementedException (); }
  34. }
  35. //[MonoTODO]
  36. public static ImageFormat Emf {
  37. get { throw new NotImplementedException (); }
  38. }
  39. //[MonoTODO]
  40. public static ImageFormat Exif {
  41. get { throw new NotImplementedException (); }
  42. }
  43. //[MonoTODO]
  44. public static ImageFormat Gif {
  45. get { throw new NotImplementedException (); }
  46. }
  47. //[MonoTODO]
  48. public Guid Guid {
  49. get { throw new NotImplementedException (); }
  50. }
  51. //[MonoTODO]
  52. public static ImageFormat Icon {
  53. get { throw new NotImplementedException (); }
  54. }
  55. //[MonoTODO]
  56. public static ImageFormat Jpeg {
  57. get { throw new NotImplementedException (); }
  58. }
  59. //[MonoTODO]
  60. public static ImageFormat MemoryBmp {
  61. get { throw new NotImplementedException (); }
  62. }
  63. //[MonoTODO]
  64. public static ImageFormat Png {
  65. get { throw new NotImplementedException (); }
  66. }
  67. //[MonoTODO]
  68. public static ImageFormat Tiff {
  69. get { throw new NotImplementedException (); }
  70. }
  71. //[MonoTODO]
  72. public static ImageFormat Wmf {
  73. get { throw new NotImplementedException (); }
  74. }
  75. }
  76. }