save image to picture
Take a look at this post: All about WP7 Isolated Storage - Read and Save ImagesIt also shows how to save an image to the media library of the phone.Hope this helps.
View Articlesave image to picture
Another helpful post could be: Encode and Decode Images in WP7The last section describes how to save an image into the Picture Library step by step.
View Articlesave image to picture
i have write this private void button1Click(object sender, RoutedEventArgs e) { // Create a filename for JPEG file in isolated storage. String tempJPEG = "saveimage;component/8alassa.jpg"; // Create...
View Articlesave image to picture
If I could take a guess, String tempJPEG = "saveimage;component/8alassa.jpg";Has a bad character in it, the ";". BUT I don't think that is your issue...If you look at your code "store.OpenFile", you...
View Articlesave image to picture
more information on saving an image vb.net is on this website,taking a look at how to set a button and save to the image you desire
View Articlesave image to picture
Do you mean to save picture to a phone photo library? If so, you can use this function to save image:UIImageWriteToSavedPhotosAlbum(UIImage *image, id completionTarget, SEL completionSelector, void...
View Article