RasterImage.ReplaceNonTransparentColors

ReplaceNonTransparentColors(Color)

Replaces all non-transparent colors with new color and preserves original alpha value to save smooth edges. Note: if you use it on images without transparency, all colors will be replaced with a single one.

public void ReplaceNonTransparentColors(Color newColor)
ParameterTypeDescription
newColorColorNew color to replace non transparent colors with.

See Also


ReplaceNonTransparentColors(int)

Replaces all non-transparent colors with new color and preserves original alpha value to save smooth edges. Note: if you use it on images without transparency, all colors will be replaced with a single one.

public virtual void ReplaceNonTransparentColors(int newColorArgb)
ParameterTypeDescription
newColorArgbInt32New color ARGB value to replace non transparent colors with.

See Also