将图像保存到手机存储

时间:2013-11-05 15:03:07

标签: c# windows-phone-7 windows-phone-8 windows-phone windows-phone-7.1

我有图像控制,我想将此图像保存到手机存储。 所以,我有Image控件和下面的按钮。当用户单击该按钮时,图像应保存到手机存储。 我怎么能这样做?

我找到了代码:

 // Create a file name for the JPEG file in isolated storage.
        String tempJPEG = "TempJPEG";

        // Create a virtual store and file stream. Check for duplicate tempJPEG files.
        var myStore = IsolatedStorageFile.GetUserStoreForApplication();
        if (myStore.FileExists(tempJPEG))
        {
            myStore.DeleteFile(tempJPEG);
        }

        IsolatedStorageFileStream myFileStream = myStore.CreateFile(tempJPEG);


        // Create a stream out of the sample JPEG file.
        // For [Application Name] in the URI, use the project name that you entered 
        // in the previous steps. Also, TestImage.jpg is an example;
        // you must enter your JPEG file name if it is different.
        StreamResourceInfo sri = null;
        Uri uri = new Uri("[Application Name];component/TestImage.jpg", UriKind.Relative);
        sri = Application.GetResourceStream(uri);

        // Create a new WriteableBitmap object and set it to the JPEG stream.
        BitmapImage bitmap = new BitmapImage();
        bitmap.CreateOptions = BitmapCreateOptions.None;
        bitmap.SetSource(sri.Stream);
        WriteableBitmap wb = new WriteableBitmap(bitmap);

        // Encode the WriteableBitmap object to a JPEG stream.
        wb.SaveJpeg(myFileStream, wb.PixelWidth, wb.PixelHeight, 0, 85);
        myFileStream.Close();

        // Create a new stream from isolated storage, and save the JPEG file to the media library on Windows Phone.
        myFileStream = myStore.OpenFile(tempJPEG, FileMode.Open, FileAccess.Read);

        // Save the image to the camera roll or saved pictures album.
        MediaLibrary library = new MediaLibrary();


        Picture pic = library.SavePicture("SavedPicture.jpg", myFileStream);
        MessageBox.Show("Image saved to saved pictures album");


        myFileStream.Close();

但是我怎样才能将图像从图像控制放到这里?

1 个答案:

答案 0 :(得分:3)

从图像控制中保存到隔离存储的简单示例。

Stream ImageStream = (MyImageControl.Source as BitmapImage).GetStream();

IsolatedStorageFile IsoStore = IsolatedStorageFile.GetUserStoreForApplication();
using (IsolatedStorageFileStream storageStream = IsoStore.CreateFile("TestImage.bmp"))                             
   ImageStream.CopyTo(storageStream);


public static Stream GetStream(this BitmapImage image)
{
    MemoryStream stream = new MemoryStream();              
    JpegBitmapEncoder encoder = new JpegBitmapEncoder();
    encoder.Frames.Add(BitmapFrame.Create(image));
    encoder.Save(stream);
    return stream;
}

GetStream延期取自此回答WPF Image to byte[]。我没有测试过这段代码,但它应该让你走上正轨。