Enum IGDIPlus.TGPImageCodecFlags
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Latest revision as of 01:32, 7 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: IGDIPlus
Contents |
Syntax
Delphi:
type TGPImageCodecFlags = (ImageCodecFlagsEncoder, ImageCodecFlagsDecoder, ImageCodecFlagsSupportBitmap, ImageCodecFlagsSupportVector, ImageCodecFlagsSeekableEncode, ImageCodecFlagsBlockingDecode, ImageCodecFlagsBuiltin, ImageCodecFlagsSystem, ImageCodecFlagsUser);
C++ Builder:
enum TGPImageCodecFlags {ImageCodecFlagsEncoder, ImageCodecFlagsDecoder, ImageCodecFlagsSupportBitmap, ImageCodecFlagsSupportVector, ImageCodecFlagsSeekableEncode, ImageCodecFlagsBlockingDecode, ImageCodecFlagsBuiltin, ImageCodecFlagsSystem, ImageCodecFlagsUser};
Visual C++ (MFC):
enum CTGPImageCodecFlags {ImageCodecFlagsEncoder, ImageCodecFlagsDecoder, ImageCodecFlagsSupportBitmap, ImageCodecFlagsSupportVector, ImageCodecFlagsSeekableEncode, ImageCodecFlagsBlockingDecode, ImageCodecFlagsBuiltin, ImageCodecFlagsSystem, ImageCodecFlagsUser};
Summary
Contains elements that are used to provide information about image codecs.
Description
This enumeration contains elements that are used to provide information about image codecs.
Values
ImageCodecFlagsEncoder | Indicates that the codec supports encoding (saving). |
ImageCodecFlagsDecoder | Indicates that the codec supports decoding (reading). |
ImageCodecFlagsSupportBitmap | Indicates that the codec supports raster images (bitmaps). |
ImageCodecFlagsSupportVector | Indicates that the codec supports vector images (metafiles). |
ImageCodecFlagsSeekableEncode | Indicates that an encoder requires a seekable output stream. |
ImageCodecFlagsBlockingDecode | Indicates that a decoder has blocking behavior during the decoding process. |
ImageCodecFlagsBuiltin | Indicates that the codec is built in to GDI+. |
ImageCodecFlagsSystem | Not used in GDI+ version 1.0. |
ImageCodecFlagsUser | Not used in GDI+ version 1.0. |