gpt4 book ai didi

c# - 从内容加载图像作为 IImageProvider

转载 作者:行者123 更新时间:2023-11-30 20:52:46 25 4
gpt4 key购买 nike

我想在 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com