Bitmap Constructor (Stream, Boolean)
.NET Framework 4
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.
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.
Important note at Remark section
The sentence "You must keep the stream open for the lifetime of the Bitmap." is very important.
$0$0
$0
$0If you close the stream after creating the bitmap object, the bitmap may can not be correctly drawn by Graphics.DrawImage.$0
- 2/21/2011
- Xiaoming Tu