PipelineElement.SupportedPixelFormats Property

Gets a collection of pixel formats that are supported by this PipelineElement.

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

Syntax

C#
public virtual ReadOnlyCollection<PixelFormat> SupportedPixelFormats { get; }

Property Value

A ReadOnlyCollection<T> of PixelFormat that are supported by this PipelineElement.

Remarks

If you try to process an image which has an unsupported pixel format, the UnsupportedPixelFormatException is thrown.

To check if some pixel format is supported by this pipeline element, use the IsPixelFormatSupported(PixelFormat) method.

See Also

Reference