|
ICM_DRAW_SUGGESTFORMAT
The ICM_DRAW_SUGGESTFORMAT message queries a rendering driver to suggest a
decompressed format that it can draw.
ICM_DRAW_SUGGESTFORMAT
wParam = (DWORD) (LPVOID) &icdrwSuggest;
lParam = sizeof(ICDRAWSUGGEST);
Parameters
icdrwSuggest
Address of an ICDRAWSUGGEST structure.
lParam
Size, in bytes, of ICDRAWSUGGEST.
Return Values
Returns ICERR_OK if successful. If the lpbiSuggest member of the ICDRAWSUGGEST structure is NULL, this message returns the amount of memory required to
contain the suggested format.
Remarks
The driver should examine the format specified in the lpbiIn member of the ICDRAWSUGGEST structure and use the lpbiSuggest member to return a format it can draw. The output format should preserve as
much data as possible from the input format.
Optionally, the driver can use the installable compressor handle passed in the hicDecompressor member of ICDRAWSUGGEST to make more complex selections. For example, if the input format is 24-bit
JPEG data, a renderer could query the decompressor to find out if it can
decompress to a YUV format (which might be drawn more efficiently) before selecting
the format to suggest.
See Also
ICDRAWSUGGEST
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Programmer's Reference (win32.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|