AntiqueFilter Class

Produces the look of an old color photo.

Dn859701.AntiqueFilter(en-us,WIN.10).jpg

Namespace: Lumia.Imaging.Artistic
Assembly: Lumia.Imaging (in Lumia.Imaging.dll) Version: 255.255.255.255

public ref class AntiqueFilter sealed : IFilter, 
	__IAntiqueFilterPublicNonVirtuals

using (var filterEffect = new FilterEffect(source))
{
    // Initialize the filter and add the filter to the FilterEffect collection
    var filter = new AntiqueFilter();

    filterEffect.Filters = new IFilter[] { filter };

    // Create a target where the filtered image will be rendered to
    var target = new WriteableBitmap(width, height);

    // Create a new renderer which outputs WriteableBitmaps
    using (var renderer = new WriteableBitmapRenderer(filterEffect, target))
    {
        // Render the image with the filter(s)
        await renderer.RenderAsync();

        // Set the output image to Image control as a source
        ImageControl.Source = target;
    }

    await SaveEffectAsync(filterEffect, "AntiqueFilter.jpg", outputImageSize);
}

System::Object
  Lumia.Imaging.Artistic::AntiqueFilter

Lumia Imaging SDK

Supported in: 2.0
Show: