I have a image which is coming from server and i am able to load it on the page.
Now i need to store that image on local system how to do it....
Image image = new Image();
if (imagePath != string.Empty)
{
Uri url = new Uri(imagePath);
BitmapImage bitmapimage;
bitmapimage = new BitmapImage(new Uri(imagePath, UriKind.Absolute));
image.Source = bitmapimage;
}
Loading
abhishek goletarPosted Jul 30, 2013, 10:58 AM
-->do one thing store only bytes in saved file so that no one can read directly like encryted.
-->and when you load it in your app using bitconvertor convert you bytes and show original image.
instead of using direct available component like file access and all that it really helps and really helps u in real time application for security.
Pankaj PandeyPosted May 22, 2013, 9:10 AM
http://code.msdn.microsoft.com/windowsapps/File-access-sample-d723e597/view/SourceCode#content
sharath mPosted May 22, 2013, 6:46 AM
Abhishek GoswamiPosted May 22, 2013, 4:08 AM
http://code.msdn.microsoft.com/windowsapps/File-access-sample-d723e597