Click or drag to resize
TableTransfer3DEffect Class
[NoComposition] Alters the colors of an image using a transfer function defined by an arbitrary three dimensional lookup table.
Inheritance Hierarchy
SystemObject
  Microsoft.Graphics.Canvas.EffectsTableTransfer3DEffect

Namespace:  Microsoft.Graphics.Canvas.Effects
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public sealed class TableTransfer3DEffect : ICanvasEffect, 
	IGraphicsEffect, IGraphicsEffectSource, ICanvasImage, IDisposable

The TableTransfer3DEffect type exposes the following members.

Constructors
  NameDescription
Public methodTableTransfer3DEffect
Initializes a new instance of the TableTransfer3DEffect class.
Top
Properties
  NameDescription
Public propertyAlphaMode
Specifies the treatment of alpha. Default value Premultiplied.
Public propertyBufferPrecision
Specifies what precision to use for intermediate buffers when drawing this effect.
Public propertyCacheOutput
Enables caching the output from drawing this effect.
Public propertyName
Attaches a user-defined name string to the effect.
Public propertySource
Gets or sets the input source for TableTransfer3D effect.
Public propertyTable
Gets or sets the 3D lookup table used to transform color values.
Top
Methods
  NameDescription
Public methodDispose
Releases all resources used by the effect.
Public methodGetBounds(ICanvasResourceCreator)
Retrieves the bounds of this TableTransfer3DEffect.
Public methodGetBounds(ICanvasResourceCreator, Matrix3x2)
Retrieves the bounds of this TableTransfer3DEffect.
Public methodGetInvalidRectangles
Queries what regions of the effect output have changed since it was last drawn.
Public methodCode exampleGetRequiredSourceRectangle
Queries what part of an effect source image is needed to draw an output region.
Public methodGetRequiredSourceRectangles
Queries what parts of the effect source images are needed to draw an output region.
Public methodInvalidateSourceRectangle
Notifies the effect that one of its source images has changed.
Top
Remarks

Supported by Win2D but not Windows.UI.Composition.

A 3D look-up table is a general purpose effect that can be used to encapsulate any 1:1 color transform effect by precomputing how the effect maps inputs to outputs for a subset of all possible input values.

The TableTransfer3D effect modifies an input image by using the image's RGB color value to index into a 3D lookup table. This table contains precomputed output values of an arbitrary color transform function.

This Windows Runtime type corresponds to the D2D 3D lookup table effect.

See Also