This documentation is archived and is not being maintained.
Bitmap Constructor (Stream, Boolean)
Visual Studio 2010
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 nullptr. -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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: