加载大量图像(OutOfMemory异常)。如何直接从硬盘加载图像?

时间:2013-05-01 17:55:35

标签: c# windows-8

我正在尝试将大量图像作为GridApp模板的DataSource加载。我使用递归函数来遍历文件夹:

public async void walk(StorageFolder folder)
    {
        IReadOnlyList<StorageFolder> subDirs = null;
        subDirs = await folder.GetFoldersAsync();
        foreach (var subDir in subDirs)
        {
            await SampleDataSource.AddGroupForFolderAsync(subDir.Path);
            walk(subDir);
        }
    }

这是核心功能:

public static async Task<bool> AddGroupForFolderAsync(string folderPath)
    {
        if (SampleDataSource.GetGroup(folderPath) != null) return false;
        StorageFolder fd = await StorageFolder.GetFolderFromPathAsync(folderPath);
        IReadOnlyList<StorageFile> fList1 = await fd.GetFilesAsync();
        List<StorageFile> fList2 = new List<StorageFile>();
        foreach (var file in fList1)
        {
            string ext = Path.GetExtension(file.Path).ToLower();
            if (ext == ".jpg" || ext == ".png" || ext == ".jpeg") fList2.Add(file);
        }
        if (fList2.Count != 0)
        {
            var folderGroup = new SampleDataGroup(
                uniqueId: folderPath,
                title: fd.Path,
                subtitle: null,
                imagePath: null,
                description: "Description goes here");
            foreach (var i in fList2)
            {
                StorageFile fl = await StorageFile.GetFileFromPathAsync(i.Path);
                IRandomAccessStream Stream = await fl.OpenAsync(FileAccessMode.Read);
                BitmapImage pict = new BitmapImage();
                pict.SetSource(Stream);
                if (pict != null && folderGroup.Image == null)
                {
                    folderGroup.SetImage(pict);
                }
                var dataItem = new SampleDataItem(
                    uniqueId: i.Path,
                    title: i.Path,
                    subtitle: null,
                    imagePath: pict,
                    description: "Decription goes here",
                    content: "Content goes here",
                    @group: folderGroup);
                folderGroup.Items.Add(dataItem);
            }
            AllGroups.Add(folderGroup);
            return true;
        }
        else { return false; }
    }

我需要加载大量文件(164个文件夹和1300多个文件,总共500 MB)。以后这个数额可能会更大。似乎IRandomAccessStream将文件加载到RAM中。如何直接从硬盘加载图像到应用程序? Windows商店应用程序是否可能?是否可以异步进行?

我知道我的代码需要重新分解。我不是要求重写它。在这种情况下,我只需要一个如何节省内存的建议。

1 个答案:

答案 0 :(得分:1)

您无法加载所有这些文件,也不会遇到与内存相关的问题。您需要加载文件位置,映射它们,并可能创建可在应用程序中显示的图片的缩略图版本。然后,一旦你真的需要加载图片,你可以卸载任何以前的图片并加载你真正需要的图片。

当您需要在屏幕上查找要加载的下一个文件时,只需使用您在应用程序中缓存的位置加载图片。