Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Adjusts the RGB color composition of the image.
Namespace: Lumia.Imaging.Adjustments
Assembly: Lumia.Imaging (in Lumia.Imaging.dll) Version: 255.255.255.255
Syntax
public sealed class ColorAdjustFilter : IFilter,
__IColorAdjustFilterPublicNonVirtuals
'Declaration
Public NotInheritable Class ColorAdjustFilter
Implements IFilter, __IColorAdjustFilterPublicNonVirtuals
public ref class ColorAdjustFilter sealed : IFilter,
__IColorAdjustFilterPublicNonVirtuals
Lumia.Imaging.Adjustments.ColorAdjustFilter = function();
Type.createClass(
'Lumia.Imaging.Adjustments.ColorAdjustFilter',
null,
Lumia.Imaging.IFilter,
Lumia.Imaging.Adjustments.__IColorAdjustFilterPublicNonVirtuals);
Examples
using (var filterEffect = new FilterEffect(source))
{
// Initialize the filter and add the filter to the FilterEffect collection
var filter = new ColorAdjustFilter(0.5, 0.1, 0);
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, "ColorAdjustFilter.jpg", outputImageSize);
}
Inheritance Hierarchy
System.Object
Lumia.Imaging.Adjustments.ColorAdjustFilter
Version Information
Lumia Imaging SDK
Supported in: 2.0