我正在盯着诺基亚成像 SDK 玩一点。现在,我面临的问题是我有一个已经存在的图像(在我的 Visual Studio 解决方案的一个文件夹中),我想转换这个图像以便在Nokia Imaging SDK的BlendFilter类中使用它。但是我不知道如何使用它。
我试图转换流中的现有图像,然后将其作为参数传递给BlendFilter构造函数。但不是运气。编译器说最好的重载方法 match ... 有一些无效的参数。
这是我尝试将现有图像加载到流的方式:
Image image = new Image();
image.Source = new BitmapImage(new Uri("/Images/Template3.2.png", UriKind.Relative));
BitmapImage bitImage = new BitmapImage(new Uri("/Images/Template3.2.png", UriKind.Relative));
WriteableBitmap Bitmap = new WriteableBitmap(bitImage);
进而:
var BlendFilter = new BlendFilter(bitImage, BlendFunction.Add); --> the compiler error is here
有谁知道如何使用BlendFilter类?任何例子都会很有帮助。
问候!