<PackageReference Include="System.Drawing.Common" Version="10.0.0-preview.3.25173.2" />

ColorLookupTableEffect

Modifies the color components of an image.
public ReadOnlyMemory<byte> AlphaLookupTable { get; }

Gets the lookup table for the alpha channel.

public ReadOnlyMemory<byte> BlueLookupTable { get; }

Gets the lookup table for the blue channel.

public ReadOnlyMemory<byte> GreenLookupTable { get; }

Gets the lookup table for the green channel.

public ReadOnlyMemory<byte> RedLookupTable { get; }

Gets the lookup table for the red channel.

public ColorLookupTableEffect(byte[] redLookupTable, byte[] greenLookupTable, byte[] blueLookupTable, byte[] alphaLookupTable)

Creates a new ColorLookupTableEffect with the specified red, green, blue, and alpha lookup tables.

public ColorLookupTableEffect(ReadOnlySpan<byte> redLookupTable, ReadOnlySpan<byte> greenLookupTable, ReadOnlySpan<byte> blueLookupTable, ReadOnlySpan<byte> alphaLookupTable)

Creates a new with the specified red, green, blue, and alpha lookup tables.