我想从位图创建一个流。首先我做了:
Stream imgStream = typeof(Main).GetTypeInfo().Assembly.GetManifestResourceStream("ApplicationBlockBase.Assets.testimage.jpg");
但现在我需要从本地图像创建一个Stream。你有什么想法吗?
感谢您的时间,问候。
答案 0 :(得分:4)
让我知道这是否有效。
StorageFile imageFile = await (await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFolderAsync("Assets")).GetFileAsync("testimage.jpg");
Stream imgStream = await imageFile.OpenStreamForReadAsync();