0

我在 wp7 中有一个图像应用程序。

class Images
{
   public string Title {get;set;}
   public string Path {get;set;}
}

在页面级别,我将标题和路径(相对于我的应用程序)绑定到一个列表。

我需要的是,当用户单击列表项时,相应的图像会在 Windows Phone 7 的图片库中打开。

4

1 回答 1

0

您应该澄清您的问题,但我想Path您的图像在隔离存储中的位置。提供这Image是您在 xaml 中的图像的名称

img.Source = GetImage(LoadIfExists(image.Path));

LoadIfExists返回隔离存储中文件的二进制数据,GetImage 将其返回为WriteableBitmap

    public static WriteableBitmap GetImage(byte[] buffer)
    {
        int width = buffer[0] * 256 + buffer[1];
        int height = buffer[2] * 256 + buffer[3];

        long matrixSize = width * height;

        WriteableBitmap retVal = new WriteableBitmap(width, height);

        int bufferPos = 4;

        for (int matrixPos = 0; matrixPos < matrixSize; matrixPos++)
        {
            int pixel = buffer[bufferPos++];
            pixel = pixel << 8 | buffer[bufferPos++];
            pixel = pixel << 8 | buffer[bufferPos++];
            pixel = pixel << 8 | buffer[bufferPos++];
            retVal.Pixels[matrixPos] = pixel;
        }

        return retVal;
    }

    public static byte[] LoadIfExists(string fileName)
    {
        byte[] retVal;

        using (IsolatedStorageFile iso = IsolatedStorageFile.GetUserStoreForApplication())
        {
            if (iso.FileExists(fileName))
            {
                using (IsolatedStorageFileStream stream = iso.OpenFile(fileName, FileMode.Open))
                {
                    retVal = new byte[stream.Length];
                    stream.Read(retVal, 0, retVal.Length);
                }
            }
            else
            {
                retVal = new byte[0];
            }
        }
        return retVal;
    }

如果你想将图像写入图片库,基本上是相同的过程,通过调用 结束SavePictureToCameraRoll()MediaLibrary如这篇MSDN 文章中所述

于 2011-11-30T08:34:46.213 回答