C# Class AForge.Imaging.UnsupportedImageFormatException

Unsupported image format exception.

The unsupported image format exception is thrown in the case when user passes an image of certain format to an image processing routine, which does not support the format. Check documentation of image the image processing routine to discover which formats are supported by the routine.

Inheritance: System.ArgumentException
Datei anzeigen Open project: holisticware-admin/MonoVersal.AForgeNET

Public Methods

Method Description
UnsupportedImageFormatException ( ) : System

Initializes a new instance of the UnsupportedImageFormatException class.

UnsupportedImageFormatException ( string message ) : System

Initializes a new instance of the UnsupportedImageFormatException class.

UnsupportedImageFormatException ( string message, string paramName ) : System

Initializes a new instance of the UnsupportedImageFormatException class.

Method Details

UnsupportedImageFormatException() public method

Initializes a new instance of the UnsupportedImageFormatException class.
public UnsupportedImageFormatException ( ) : System
return System

UnsupportedImageFormatException() public method

Initializes a new instance of the UnsupportedImageFormatException class.
public UnsupportedImageFormatException ( string message ) : System
message string Message providing some additional information.
return System

UnsupportedImageFormatException() public method

Initializes a new instance of the UnsupportedImageFormatException class.
public UnsupportedImageFormatException ( string message, string paramName ) : System
message string Message providing some additional information.
paramName string Name of the invalid parameter.
return System