ImageCodecFlags Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides attributes of an image encoder/decoder (codec).
This enumeration supports a bitwise combination of its member values.
public enum class ImageCodecFlags
[System.Flags]
public enum ImageCodecFlags
[<System.Flags>]
type ImageCodecFlags =
Public Enum ImageCodecFlags
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
Encoder | 1 | The codec supports encoding (saving). |
Decoder | 2 | The codec supports decoding (reading). |
SupportBitmap | 4 | The codec supports raster images (bitmaps). |
SupportVector | 8 | The codec supports vector images (metafiles). |
SeekableEncode | 16 | The encoder requires a seekable output stream. |
BlockingDecode | 32 | The decoder has blocking behavior during the decoding process. |
Builtin | 65536 | The codec is built into GDI+. |
System | 131072 | Not used. |
User | 262144 | Not used. |
Remarks
The ImageCodecFlags class is used by the Flags property of the ImageCodecInfo class.