Poznámka:
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
The ImageCodecFlags enumeration indicates attributes of an image codec.
Syntax
typedef enum ImageCodecFlags {
ImageCodecFlagsEncoder = 0x00000001,
ImageCodecFlagsDecoder = 0x00000002,
ImageCodecFlagsSupportBitmap = 0x00000004,
ImageCodecFlagsSupportVector = 0x00000008,
ImageCodecFlagsSeekableEncode = 0x00000010,
ImageCodecFlagsBlockingDecode = 0x00000020,
ImageCodecFlagsBuiltin = 0x00010000,
ImageCodecFlagsSystem = 0x00020000,
ImageCodecFlagsUser = 0x00040000
} ;
Constants
ImageCodecFlagsEncoderValue: 0x00000001 Indicates that the codec supports encoding (saving). |
ImageCodecFlagsDecoderValue: 0x00000002 Indicates that the codec supports decoding (reading). |
ImageCodecFlagsSupportBitmapValue: 0x00000004 Indicates that the codec supports raster images (bitmaps). |
ImageCodecFlagsSupportVectorValue: 0x00000008 Indicates that the codec supports vector images (metafiles). |
ImageCodecFlagsSeekableEncodeValue: 0x00000010 Indicates that an encoder requires a seekable output stream. |
ImageCodecFlagsBlockingDecodeValue: 0x00000020 Indicates that a decoder has blocking behavior during the decoding process. |
ImageCodecFlagsBuiltinValue: 0x00010000 Indicates that the codec is built in to GDI+. |
ImageCodecFlagsSystemValue: 0x00020000 Not used in GDI+ version 1.0. |
ImageCodecFlagsUserValue: 0x00040000 Not used in GDI+ version 1.0. |
Requirements
| Requirement | Value |
|---|---|
| Minimum supported client | Windows XP, Windows 2000 Professional [desktop apps only] |
| Minimum supported server | Windows 2000 Server [desktop apps only] |
| Header | gdiplusimaging.h (include Gdiplus.h) |