作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 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。
我该如何解决这个问题?
最佳答案
您尝试过使用 StorageFileImageSource 吗?
string imageFile = @"images\background.jpg"
var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(imageFile);
blendFilter.ForegroundSource = new StorageFileImageSource(file))
关于c# - 从内容加载图像作为 IImageProvider,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20586337/
我想在 WP8 上使用诺基亚成像 SDK 将两个图像混合在一起。为此,我需要将 blendFilter.ForegroundSource 设置为派生自 IImageProvider 的图像类型。我尝试
我在 IImageProvider 接口(interface)后面有一个图像源,我正在尝试访问它的像素。 IImageProvider内部有一个方法:imageProvider.GetBitmapAs
我是一名优秀的程序员,十分优秀!