1

我想从位图创建一个流。首先,我这样做了:

Stream imgStream = typeof(Main).GetTypeInfo().Assembly.GetManifestResourceStream("ApplicationBlockBase.Assets.testimage.jpg");

但现在我需要从本地图像创建一个 Stream。你有什么想法?

谢谢你的时间,问候。

4

1 回答 1

4

让我知道这是否有效。

StorageFile imageFile = await (await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFolderAsync("Assets")).GetFileAsync("testimage.jpg");
Stream imgStream = await imageFile.OpenStreamForReadAsync();
于 2013-04-08T08:52:15.617 回答