Hi,
Im loading a tif image of size more than 4MB, into the picture box. With the help of following code snippet.
FileStream fs = File.OpenRead(i magePath);
Image img = Image.FromStrea m(fs);
But while executing the statement Image.fromstrea m(), Im getting the exception System.Outof memory exception. Any suggestion for this problem........ ..
Im loading a tif image of size more than 4MB, into the picture box. With the help of following code snippet.
FileStream fs = File.OpenRead(i magePath);
Image img = Image.FromStrea m(fs);
But while executing the statement Image.fromstrea m(), Im getting the exception System.Outof memory exception. Any suggestion for this problem........ ..
Comment