Description
Creates an Image object based on a stream.
Syntax
GpStatus WINGDIPAPI GdipLoadImageFromStream(
IStream* stream,
GpImage **image
);
PowerBASIC Syntax
DECLARE FUNCTION GdipLoadImageFromStream ( _
BYVAL pStream
AS DWORD, _
BYREF pImage AS
DWORD _
) AS LONG
Parameters
stream
[in] Pointer to an IStream interface. The implementation of IStream
must include the Seek, Read, and Stat methods.
image
[out] Pointer to the new created Image object.
|