3

我正在盯着诺基亚成像 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类?任何例子都会很有帮助。

问候!

4

1 回答 1

5

混合过滤器将 IImageProvider 作为输入。这意味着您可以使用任何 X-ImageSource 类作为输入,它将在内部完成所有工作。

如果您有图像流,我建议您创建一个 StreamImageSource 并将其传递给 BlendFilter。

不同图像源的列表很长,我建议您查看文档并选择最适合您的一个。

这是一个将图像流作为输入并在其上混合新图像的示例。为简单起见,其他图像只是填充了一种颜色(ColorImageSource)的图像,但您可以将任何 IImageProvider 设置为源:选择最方便的一个。

using (var backgroundSource = new StreamImageSource(stream))
using (var filterEffect = new FilterEffect(backgroundSource))
{
    using (BlendFilter blendFilter = new BlendFilter()) 
    {
        var size = new Windows.Foundation.Size(400, 400);
        var color = Windows.UI.Color.FromArgb(250, 128, 255, 200);

        blendFilter.ForegroundSource = new ColorImageSource(size, color);
        blendFilter.BlendFunction = BlendFunction.Add;

        filterEffect.Filters = new[] { blendFilter };

        var result = await new JpegRenderer(filterEffect).RenderAsync();
    }
}
于 2013-12-13T10:30:05.863 回答