ImageCodecFlags Enum

Definition

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
ImageCodecFlags
Attributes

Fields

BlockingDecode 32

The decoder has blocking behavior during the decoding process.

Builtin 65536

The codec is built into GDI+.

Decoder 2

The codec supports decoding (reading).

Encoder 1

The codec supports encoding (saving).

SeekableEncode 16

The encoder requires a seekable output stream.

SupportBitmap 4

The codec supports raster images (bitmaps).

SupportVector 8

The codec supports vector images (metafiles).

System 131072

Not used.

User 262144

Not used.

Remarks

The ImageCodecFlags class is used by the Flags property of the ImageCodecInfo class.

Applies to