我想在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。
我该如何解决这个问题?
答案 0 :(得分:4)
您是否尝试过使用StorageFileImageSource?
string imageFile = @"images\background.jpg"
var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(imageFile);
blendFilter.ForegroundSource = new StorageFileImageSource(file))