This documentation is archived and is not being maintained.
ImageCodecFlags Enumeration
.NET Framework 1.1
Provides flags for use with codecs.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Visual Basic] <Flags> <Serializable> Public Enum ImageCodecFlags [C#] [Flags] [Serializable] public enum ImageCodecFlags [C++] [Flags] [Serializable] __value public enum ImageCodecFlags [JScript] public Flags Serializable enum ImageCodecFlags
Members
| Member name | Description | Value |
|---|---|---|
| BlockingDecode | Indicates that a decoder has blocking behavior during the decoding process. | 32 |
| Builtin | Indicates that the codec is built into GDI+. | 65536 |
| Decoder | Indicates that the codec supports decoding (reading). | 2 |
| Encoder | Indicates that the codec supports encoding (saving). | 1 |
| SeekableEncode | Indicates that an encoder requires a seekable output stream. | 16 |
| SupportBitmap | Indicates that the codec supports raster images (bitmaps). | 4 |
| SupportVector | Indicates that the codec supports vector images (metafiles). | 8 |
| System | Not used in GDI+ version 1.0. | 131072 |
| User | Not used in GDI+ version 1.0. | 262144 |
Requirements
Namespace: System.Drawing.Imaging
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Drawing (in System.Drawing.dll)
See Also
Show: