|
ICImageDecompress
The ICImageDecompress function decompresses an image without using initialization functions.
HANDLE ICImageDecompress(
HIC hic,
|
| UINT uiFlags,
|
| LPBITMAPINFO lpbiIn,
|
| LPVOID lpBits,
|
| LPBITMAPINFO lpbiOut
|
| );
|
|
Parameters
hic
Handle of a decompressor opened with the ICOpen function. Specify NULL to have VCM select an appropriate decompressor for the
compressed image.
uiFlags
Reserved; must be zero.
lpbiIn
Compressed input data format.
lpBits
Address of input data bits to compress. The data bits exclude header and
format information.
lpbiOut
Decompressed output format. Specify NULL to let decompressor use an
appropriate format.
Return Values
Returns a handle to an uncompressed DIB in the CF_DIB format if successful or
NULL otherwise. Image data follows the format header.
Remarks
To obtain the format information from the LPBITMAPINFOHEADER structure, use the GlobalLock function to lock the data. Use the GlobalFree function to free the DIB when you are finished.
See Also
ICOpen, GlobalLock, GlobalFree
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
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
|