Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / ImageFormat.cs / 1305376 / ImageFormat.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Imaging { using System; using System.Diagnostics; using System.Drawing; using System.ComponentModel; /** * Image format constants */ ////// /// Specifies the format of the image. /// [TypeConverterAttribute(typeof(ImageFormatConverter))] public sealed class ImageFormat { // Format IDs // private static ImageFormat undefined = new ImageFormat(new Guid("{b96b3ca9-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat memoryBMP = new ImageFormat(new Guid("{b96b3caa-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat bmp = new ImageFormat(new Guid("{b96b3cab-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat emf = new ImageFormat(new Guid("{b96b3cac-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat wmf = new ImageFormat(new Guid("{b96b3cad-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat jpeg = new ImageFormat(new Guid("{b96b3cae-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat png = new ImageFormat(new Guid("{b96b3caf-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat gif = new ImageFormat(new Guid("{b96b3cb0-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat tiff = new ImageFormat(new Guid("{b96b3cb1-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat exif = new ImageFormat(new Guid("{b96b3cb2-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat photoCD = new ImageFormat(new Guid("{b96b3cb3-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat flashPIX = new ImageFormat(new Guid("{b96b3cb4-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat icon = new ImageFormat(new Guid("{b96b3cb5-0728-11d3-9d7b-0000f81ef32e}")); private Guid guid; ////// /// Initializes a new instance of the public ImageFormat(Guid guid) { this.guid = guid; } ///class with the specified GUID. /// /// /// Specifies a global unique identifier (GUID) /// that represents this public Guid Guid { get { return guid;} } ///. /// /// /// Specifies a memory bitmap image format. /// public static ImageFormat MemoryBmp { get { return memoryBMP;} } ////// /// Specifies the bitmap image format. /// public static ImageFormat Bmp { get { return bmp;} } ////// /// Specifies the enhanced Windows metafile /// image format. /// public static ImageFormat Emf { get { return emf;} } ////// /// Specifies the Windows metafile image /// format. /// public static ImageFormat Wmf { get { return wmf;} } ////// /// Specifies the GIF image format. /// public static ImageFormat Gif { get { return gif;} } ////// /// Specifies the JPEG image format. /// public static ImageFormat Jpeg { get { return jpeg;} } ////// /// public static ImageFormat Png { get { return png;} } ////// Specifies the W3C PNG image format. /// ////// /// Specifies the Tag Image File /// Format (TIFF) image format. /// public static ImageFormat Tiff { get { return tiff;} } ////// /// Specifies the Exchangable Image Format /// (EXIF). /// public static ImageFormat Exif { get { return exif;} } ////// /// public static ImageFormat Icon { get { return icon;} } ////// Specifies the Windows icon image format. /// ////// /// Returns a value indicating whether the /// specified object is an [System.Runtime.TargetedPatchingOptOutAttribute("Performance critical to inline across NGen image boundaries")] public override bool Equals(object o) { ImageFormat format = o as ImageFormat; if (format == null) return false; return this.guid == format.guid; } ///equivalent to this . /// /// /// public override int GetHashCode() { return this.guid.GetHashCode(); } #if !FEATURE_PAL // Find any random encoder which supports this format internal ImageCodecInfo FindEncoder() { ImageCodecInfo[] codecs = ImageCodecInfo.GetImageEncoders(); foreach (ImageCodecInfo codec in codecs) { if (codec.FormatID.Equals(this.guid)) return codec; } return null; } #endif ////// Returns a hash code. /// ////// /// Converts this public override string ToString() { if (this == memoryBMP) return "MemoryBMP"; if (this == bmp) return "Bmp"; if (this == emf) return "Emf"; if (this == wmf) return "Wmf"; if (this == gif) return "Gif"; if (this == jpeg) return "Jpeg"; if (this == png) return "Png"; if (this == tiff) return "Tiff"; if (this == exif) return "Exif"; if (this == icon) return "Icon"; return "[ImageFormat: " + guid + "]"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //to a human-readable string. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Drawing.Imaging { using System; using System.Diagnostics; using System.Drawing; using System.ComponentModel; /** * Image format constants */ ////// /// Specifies the format of the image. /// [TypeConverterAttribute(typeof(ImageFormatConverter))] public sealed class ImageFormat { // Format IDs // private static ImageFormat undefined = new ImageFormat(new Guid("{b96b3ca9-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat memoryBMP = new ImageFormat(new Guid("{b96b3caa-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat bmp = new ImageFormat(new Guid("{b96b3cab-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat emf = new ImageFormat(new Guid("{b96b3cac-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat wmf = new ImageFormat(new Guid("{b96b3cad-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat jpeg = new ImageFormat(new Guid("{b96b3cae-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat png = new ImageFormat(new Guid("{b96b3caf-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat gif = new ImageFormat(new Guid("{b96b3cb0-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat tiff = new ImageFormat(new Guid("{b96b3cb1-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat exif = new ImageFormat(new Guid("{b96b3cb2-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat photoCD = new ImageFormat(new Guid("{b96b3cb3-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat flashPIX = new ImageFormat(new Guid("{b96b3cb4-0728-11d3-9d7b-0000f81ef32e}")); private static ImageFormat icon = new ImageFormat(new Guid("{b96b3cb5-0728-11d3-9d7b-0000f81ef32e}")); private Guid guid; ////// /// Initializes a new instance of the public ImageFormat(Guid guid) { this.guid = guid; } ///class with the specified GUID. /// /// /// Specifies a global unique identifier (GUID) /// that represents this public Guid Guid { get { return guid;} } ///. /// /// /// Specifies a memory bitmap image format. /// public static ImageFormat MemoryBmp { get { return memoryBMP;} } ////// /// Specifies the bitmap image format. /// public static ImageFormat Bmp { get { return bmp;} } ////// /// Specifies the enhanced Windows metafile /// image format. /// public static ImageFormat Emf { get { return emf;} } ////// /// Specifies the Windows metafile image /// format. /// public static ImageFormat Wmf { get { return wmf;} } ////// /// Specifies the GIF image format. /// public static ImageFormat Gif { get { return gif;} } ////// /// Specifies the JPEG image format. /// public static ImageFormat Jpeg { get { return jpeg;} } ////// /// public static ImageFormat Png { get { return png;} } ////// Specifies the W3C PNG image format. /// ////// /// Specifies the Tag Image File /// Format (TIFF) image format. /// public static ImageFormat Tiff { get { return tiff;} } ////// /// Specifies the Exchangable Image Format /// (EXIF). /// public static ImageFormat Exif { get { return exif;} } ////// /// public static ImageFormat Icon { get { return icon;} } ////// Specifies the Windows icon image format. /// ////// /// Returns a value indicating whether the /// specified object is an [System.Runtime.TargetedPatchingOptOutAttribute("Performance critical to inline across NGen image boundaries")] public override bool Equals(object o) { ImageFormat format = o as ImageFormat; if (format == null) return false; return this.guid == format.guid; } ///equivalent to this . /// /// /// public override int GetHashCode() { return this.guid.GetHashCode(); } #if !FEATURE_PAL // Find any random encoder which supports this format internal ImageCodecInfo FindEncoder() { ImageCodecInfo[] codecs = ImageCodecInfo.GetImageEncoders(); foreach (ImageCodecInfo codec in codecs) { if (codec.FormatID.Equals(this.guid)) return codec; } return null; } #endif ////// Returns a hash code. /// ////// /// Converts this public override string ToString() { if (this == memoryBMP) return "MemoryBMP"; if (this == bmp) return "Bmp"; if (this == emf) return "Emf"; if (this == wmf) return "Wmf"; if (this == gif) return "Gif"; if (this == jpeg) return "Jpeg"; if (this == png) return "Png"; if (this == tiff) return "Tiff"; if (this == exif) return "Exif"; if (this == icon) return "Icon"; return "[ImageFormat: " + guid + "]"; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.to a human-readable string. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DecoderNLS.cs
- TreeBuilderXamlTranslator.cs
- ProcessInfo.cs
- MetadataException.cs
- BaseTemplateParser.cs
- UiaCoreApi.cs
- GroupItem.cs
- IResourceProvider.cs
- TextSpanModifier.cs
- SmtpException.cs
- Translator.cs
- GenericXmlSecurityToken.cs
- ByteAnimation.cs
- StringUtil.cs
- XmlEncodedRawTextWriter.cs
- RowsCopiedEventArgs.cs
- KeyedCollection.cs
- FrameworkContentElementAutomationPeer.cs
- DragDrop.cs
- DiagnosticTrace.cs
- DataGridViewLayoutData.cs
- MsmqException.cs
- JournalEntryListConverter.cs
- safelink.cs
- Stylus.cs
- RegexMatch.cs
- HyperLinkStyle.cs
- TailPinnedEventArgs.cs
- RegularExpressionValidator.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- DataServiceRequestException.cs
- KnownTypes.cs
- TreeBuilderXamlTranslator.cs
- PageTrueTypeFont.cs
- ObjectDataSourceDisposingEventArgs.cs
- InkCanvasSelection.cs
- SkewTransform.cs
- XmlAttributeCache.cs
- UIServiceHelper.cs
- Relationship.cs
- DesignerCategoryAttribute.cs
- HttpProfileGroupBase.cs
- WebPartsPersonalization.cs
- UIServiceHelper.cs
- ImageCollectionEditor.cs
- CopyOfAction.cs
- InkCollectionBehavior.cs
- ClassValidator.cs
- ProxyManager.cs
- ShaderEffect.cs
- TypeResolver.cs
- DoubleAnimationUsingPath.cs
- ProgressiveCrcCalculatingStream.cs
- HandlerFactoryCache.cs
- TreeViewEvent.cs
- ClaimSet.cs
- CombinedGeometry.cs
- SqlInternalConnectionTds.cs
- StylusPointPropertyInfo.cs
- UniqueEventHelper.cs
- SafeFileHandle.cs
- DiffuseMaterial.cs
- SubMenuStyle.cs
- CapabilitiesRule.cs
- AddressHeader.cs
- PointLightBase.cs
- ContentControl.cs
- ObjectDataProvider.cs
- CardSpaceSelector.cs
- StorageInfo.cs
- ImageSourceConverter.cs
- ConfigXmlComment.cs
- SigningDialog.cs
- RenderDataDrawingContext.cs
- BooleanAnimationBase.cs
- MimeTypeAttribute.cs
- entitydatasourceentitysetnameconverter.cs
- ColorBuilder.cs
- AvTrace.cs
- DiscoveryService.cs
- CodeEntryPointMethod.cs
- OledbConnectionStringbuilder.cs
- HTMLTagNameToTypeMapper.cs
- ToolTipService.cs
- MdiWindowListItemConverter.cs
- KnownIds.cs
- WasHttpModulesInstallComponent.cs
- Native.cs
- GridSplitterAutomationPeer.cs
- XmlFormatExtensionPrefixAttribute.cs
- XmlEventCache.cs
- SQLDoubleStorage.cs
- KeyedQueue.cs
- ExtractorMetadata.cs
- SoapServerMessage.cs
- IconEditor.cs
- DrawingBrush.cs
- ToolStripItemRenderEventArgs.cs
- LocalizableAttribute.cs
- NativeCppClassAttribute.cs