Bitmap Constructor (Stream^, Boolean)
.NET Framework (current version)
Initializes a new instance of the Bitmap class from the specified data stream.
Assembly: System.Drawing (in System.Drawing.dll)
Parameters
- stream
-
Type:
System.IO::Stream^
The data stream used to load the image.
- useIcm
-
Type:
System::Boolean
true to use color correction for this Bitmap; otherwise, false.
| Exception | Condition |
|---|---|
| System::ArgumentException | stream does not contain image data or is null. -or- stream contains a PNG image file with a single dimension greater than 65,535 pixels. |
You must keep the stream open for the lifetime of the Bitmap.
Due to a limitation of the GDI+ decoder, an System::ArgumentException is thrown if you construct a bitmap from a .png image file with a single dimension greater than 65,535 pixels.
.NET Framework
Available since 1.1
Available since 1.1
Show: