从内容加载图像为IImageProvider

时间:2013-12-14 17:45:14

标签: c# windows-phone-8 windows-phone nokia-imaging-sdk lumia-imaging-sdk

我想在WP8上使用诺基亚成像SDK将两个图像混合在一起。为此,我需要将blendFilter.ForegroundSource设置为从IImageProvider派生的图像类型。 我尝试使用

Uri uri = new Uri("/images/background.jpg", UriKind.Relative);  
var imgSource = new BitmapImage(uri);
blendFilter.ForegroundSource = new BitmapImageSource(imgSource);

但BitmapImage不实现IReadableBitmap。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:4)

您是否尝试过使用StorageFileImageSource?

string imageFile = @"images\background.jpg"
var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(imageFile);
blendFilter.ForegroundSource = new StorageFileImageSource(file))