S
Saya
Hi,
Another problem turned up: how do I save a bitmap image, acquired via
a HttpWebRequest, under CF?
Code snippet:
wReq=(HttpWebRequest)WebRequest.Create(sURL);
wRes=(HttpWebResponse)(wReq).GetResponse();
str=wRes.GetResponseStream();
Image imgImage=new Bitmap(str);
The image is then displayed in a picturebox and will be annotated by
the user. After doing his stuff, the user quits and the original image
(the one prior to the annotation) must be displayed again.
The situation is: I cannot do a "bitmap.Save" in CF - it's
unsupported.
How should I save the original image and easily re-display it again?
Thank you for your help.
Saya
Another problem turned up: how do I save a bitmap image, acquired via
a HttpWebRequest, under CF?
Code snippet:
wReq=(HttpWebRequest)WebRequest.Create(sURL);
wRes=(HttpWebResponse)(wReq).GetResponse();
str=wRes.GetResponseStream();
Image imgImage=new Bitmap(str);
The image is then displayed in a picturebox and will be annotated by
the user. After doing his stuff, the user quits and the original image
(the one prior to the annotation) must be displayed again.
The situation is: I cannot do a "bitmap.Save" in CF - it's
unsupported.
How should I save the original image and easily re-display it again?
Thank you for your help.
Saya