Defines a record type that stores information about an image codec (encoder/decoder). GDI+ provides several built-in image codecs.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPImageCodecInfo = record
end;
|
|
Name
|
Description
|
|
Clsid
|
Codec identifier.
|
|
CodecName
|
Codec name
|
|
DllName
|
String that contains the path name of the DLL in which the codec resides.
|
|
FilenameExtension
|
string that contains all file-name extensions associated with the codec. The extensions are separated by semicolons
|
|
Flags
|
Flags about the image codec
|
|
FormatDescription
|
string that contains the name of the file format used by the codec.
|
|
FormatID
|
File format identifier
|
|
MimeType
|
string that contains the mime type of the codec.
|
|
Version
|
version of the codec.
|
Top
|