将 IRandomAccessStream 转换为 RandomAccessStreamReference C#

本文关键字:RandomAccessStreamReference 转换 IRandomAccessStream | 更新日期: 2023-09-27 18:36:54

我在下面的代码中将IRandomAccessStream转换为RandomAccessStreamReference,但是当我看到结果时,没有共享的图像。 我该如何处理?

if (imageFile != null)
{
    using (IRandomAccessStream fileStream = await util.imageFile.OpenAsync(Windows.Storage.FileAccessMode.Read))
    {
        this.imageStreamRef = RandomAccessStreamReference.CreateFromFile(imageFile);
        this.dataPackageThumbnail = this.imageStreamRef;
        //  this.imageStream = await util.imageFile.OpenAsync(FileAccessMode.Read);
        await fileStream.FlushAsync();
    }
}

将 IRandomAccessStream 转换为 RandomAccessStreamReference C#

http://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.streams.irandomaccessstream

尝试重置流(搜索)。

相关文章:
  • 没有找到相关文章