Loads a FreeImage bitmap.
The stream must be set to the correct position before calling LoadFromStream.
Namespace:
FreeImageAPIAssembly: FreeImageNET (in FreeImageNET.dll)
Syntax
C# |
---|
public static FIBITMAP LoadFromStream( Stream stream, FREE_IMAGE_LOAD_FLAGS flags ) |
Visual Basic (Declaration) |
---|
Public Shared Function LoadFromStream ( _ stream As Stream, _ flags As FREE_IMAGE_LOAD_FLAGS _ ) As FIBITMAP |
Visual C++ |
---|
public: static FIBITMAP LoadFromStream( Stream^ stream, FREE_IMAGE_LOAD_FLAGS flags ) |
Parameters
- stream
- Type: System.IO..::.Stream
The stream to read from.
- flags
- Type: FreeImageAPI..::.FREE_IMAGE_LOAD_FLAGS
Flags to enable or disable plugin-features.
Return Value
Handle to a FreeImage bitmap.Exceptions
Exception | Condition |
---|---|
System..::.ArgumentNullException | stream is null. |
System..::.ArgumentException | stream is not capable of reading. |