This documentation is for the old version. Go to the latest Graphics Mill docs

BitmapTransform.SupportedPixelFormats Property

Returns an array of pixel formats that are supported by this transform.

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Overridable ReadOnly Property SupportedPixelFormats As PixelFormat()
C#
public virtual PixelFormat[] SupportedPixelFormats { get; }

Property Value

An array of PixelFormat values that are supported by this transform.

Remarks

If you try to apply this transform to a bitmap which has pixel format which is not inlcuded into this array, UnsupportedPixelFormatException will be raised.

To verify the single pixel format, use IsPixelFormatSupported(PixelFormat) method.

See Also

Reference