如何在windows phone中设置和保存背景图像

本文关键字:保存 背景 图像 设置 windows phone | 更新日期: 2023-09-27 17:58:04

我正在使用这段代码,因此用户可以为应用程序设置自定义背景图像:

private void Button_Click(object sender, RoutedEventArgs e)
    {
        PhotoChooserTask photoChooserTask = new PhotoChooserTask();
        photoChooserTask.Completed += new EventHandler<PhotoResult>(photoChooserTask_Completed);
        photoChooserTask.Show();
    }
    void photoChooserTask_Completed(object sender, PhotoResult e)
    {
        if (e.TaskResult == TaskResult.OK)
        {
            System.Windows.Media.Imaging.BitmapImage bmp = new System.Windows.Media.Imaging.BitmapImage();
            bmp.SetSource(e.ChosenPhoto);
            var imageBrush = new ImageBrush
            {
                ImageSource = bmp,
                Opacity = 0.5d
            };
            App.RootFrame.Background = imageBrush;
        }
    }

但这不会为下一次应用程序午餐保存背景图像。现在,我如何将选择的照片保存到独立的存储中,即使在重新启动应用程序后仍保留为应用程序背景?

如何在windows phone中设置和保存背景图像

异步保存图像,仅适用于WP8。

public static async Task SaveImageAsync(string imageFileName, BitmapImage image)
{
    // Get Students LocalFolder
    IStorageFolder folder = await ApplicationData.Current.LocalFolder
        .CreateFolderAsync("Images", CreationCollisionOption.OpenIfExists);

        IStorageFile file = await folder.CreateFileAsync(
            imageFileName, CreationCollisionOption.ReplaceExisting);
        using (Stream stream = await file.OpenStreamForWriteAsync())
        {                
            var wrBitmap = new WriteableBitmap(image);
            wrBitmap.SaveJpeg(stream, image.PixelWidth, image.PixelHeight, 100, 100);
        }
    }

同步读取图像两个WP7.x WP8:

public static BitmapImage LoadImage(string imageFileName)
{
    BitmapImage bitmapImage = null;
    using (var isoFile = IsolatedStorageFile.GetUserStoreForApplication())
    {
         using (var isoStream = isoFile.OpenFile(
             imageFileName, FileMode.Open, FileAccess.Read))
         {
              bitmapImage = new BitmapImage();
              bitmapImage.SetSource(isoStream);
         }
    }
    return bitmapImage;
}

你可以在网上找到一堆资源,只需谷歌一下。http://msdn.microsoft.com/en-us/library/xf96a1wz(v=vs.110).aspx

选择时

IsolatedStorageSettings.ApplicationSettings["backgroundImage"]=e.OriginalFileName;

应用程序加载

image.Source = new BitmapImage(new Uri(IsolatedStorageSettings.ApplicationSettings["backgroundImage"], UriKind.Absolute));

您可以使用免费的EZ_Iso.dll来完成此操作。

只需将位图发送到具有名称的序列化程序,并让它处理其余的

//Saving
EZ_Iso.IsolatedStorageAccess.SaveImage(“MyImage”, YourImage);
//Retrieving 
ImageControl.Source = EZ_Iso.IsolatedStroageAccess.GetImage(“MyImage”,Width,Height); 

EZ_Iso.dll下载和文档