Defines an enumeration that indicates attributes of an image codec
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPImageCodecFlag = (
icfEncoder = 0,
icfDecoder = 1,
icfSupportBitmap = 2,
icfSupportVector = 3,
icfSeekableEncode = 4,
icfBlockingDecode = 5,
icfBuiltin = 16,
icfSystem = 17,
icfUser = 18
);
|
|
Name
|
Description
|
|
icfBlockingDecode
|
Indicates that a decoder has blocking behavior during the decoding process.
|
|
icfBuiltin
|
Indicates that the codec is built in to GDI+.
|
|
icfDecoder
|
Indicates that the codec supports decoding (reading).
|
|
icfEncoder
|
Indicates that the codec supports encoding (saving).
|
|
icfSeekableEncode
|
Indicates that an encoder requires a seekable output stream.
|
|
icfSupportBitmap
|
Indicates that the codec supports raster images (bitmaps).
|
|
icfSupportVector
|
Indicates that the codec supports vector images (metafiles).
|
|
icfSystem
|
Represents constant icfSystem.
|
|
icfUser
|
Represents constant icfUser.
|
Top
|