PixelFormatExtensionsToKnownPixelFormat Method

Converts a PixelFormat to the closest KnownPixelFormat. Please note that some formats with identical names may represent different actual pixel layout.
See the Remarks section of the ImageExtensions.ConvertPixelFormat method for details about the differences on Windows and Unix platforms.

Definition

Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 9.0.0
C#
public static KnownPixelFormat ToKnownPixelFormat(
	this PixelFormat pixelFormat
)

Parameters

pixelFormat  PixelFormat
The source PixelFormat to convert to a KnownPixelFormat.

Return Value

KnownPixelFormat
A KnownPixelFormat instance. It will be Undefined if the source pixelFormat cannot be mapped.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type PixelFormat. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also