| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- //
- // System.Drawing.Imaging.ImageFormat.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Everaldo Canuto
- // eMail: [email protected]
- // Dennis Hayes ([email protected])
- //
- using System;
- namespace System.Drawing.Imaging {
- public sealed class ImageFormat {
- Guid guid_;
- // constructors
- [MonoTODO]
- public ImageFormat(Guid guid) {
- guid_ = guid;
- }
-
- // methods
- [MonoTODO]
- public override bool Equals(object o) {
- return base.Equals(o);
- }
- [MonoTODO]
- public override int GetHashCode() {
- return base.GetHashCode();
- }
-
- [MonoTODO]
- public override string ToString() {
- throw new NotImplementedException ();
- }
- // properties
- static ImageFormat BmpImageFormat_ = new ImageFormat(new Guid("DFB9AC7D-498D-4bd8-9D42-E23E541964B1"));
- [MonoTODO]
- public static ImageFormat Bmp {
- get { return BmpImageFormat_; }
- }
-
- [MonoTODO]
- public static ImageFormat Emf {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static ImageFormat Exif {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static ImageFormat Gif {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public Guid Guid {
- get { return guid_; }
- }
-
- [MonoTODO]
- public static ImageFormat Icon {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- static ImageFormat JpegImageFormat_ = new ImageFormat(new Guid("83BFFDF8-398F-407f-BA33-A7993D11B2DA"));
- public static ImageFormat Jpeg {
- get { return JpegImageFormat_; }
- }
-
- [MonoTODO]
- public static ImageFormat MemoryBmp {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static ImageFormat Png {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static ImageFormat Tiff {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public static ImageFormat Wmf {
- get { throw new NotImplementedException (); }
- }
-
- }
- }
|