Bitmap.Bitmap(Stream) Constructor
.NET Framework 3.0
Initializes a new instance of the Bitmap class from the specified data stream.
Namespace: System.Drawing
Assembly: System.Drawing (in system.drawing.dll)
Assembly: System.Drawing (in system.drawing.dll)
The following code example demonstrates how to load a bitmap from a stream.
This example is designed to be used with Windows Forms. Create a form that contains a PictureBox named PictureBox1. Paste the code into the form and call the InitializeStreamBitmap method from the form's constructor or Load event-handling method.
void InitializeStreamBitmap() { try { System::Net::WebRequest^ request = System::Net::WebRequest::Create( "http://www.microsoft.com//h/en-us/r/ms_masthead_ltr.gif" ); System::Net::WebResponse^ response = request->GetResponse(); System::IO::Stream^ responseStream = response->GetResponseStream(); Bitmap^ bitmap2 = gcnew Bitmap( responseStream ); PictureBox1->Image = bitmap2; } catch ( System::Net::WebException^ ) { MessageBox::Show( "There was an error opening the image file." "Check the URL" ); } }
private void InitializeStreamBitmap()
{
try {
System.Net.WebRequest request = System.Net.WebRequest.Create(
"http://www.microsoft.com//h/en-us/r/ms_masthead_ltr.gif");
System.Net.WebResponse response = request.GetResponse();
System.IO.Stream responseStream = response.GetResponseStream();
Bitmap bitmap2 = new Bitmap(responseStream);
pictureBox1.set_Image(bitmap2);
}
catch (System.Net.WebException exp) {
MessageBox.Show(("There was an error opening the image file."
+ "Check the URL"));
}
} //InitializeStreamBitmap
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: