I'd like to blend two images together using the Nokia Imaging SDK on WP8. For this, I need to set the blendFilter.ForegroundSource to an image type derived from IImageProvider. I tried using
Uri uri = new Uri("/images/background.jpg", UriKind.Relative);
var imgSource = new BitmapImage(uri);
blendFilter.ForegroundSource = new BitmapImageSource(imgSource);
but BitmapImage does not implement IReadableBitmap.
How can I solve this?
Have you tried using StorageFileImageSource?