C# Class ImageMagick.ColorProfile

Class that contains an ICM/ICC color profile.
Inheritance: ImageProfile
Show file Open project: dlemstra/Magick.NET Class Usage Examples

Public Methods

Method Description
ColorProfile ( Byte data ) : System

Initializes a new instance of the ColorProfile class.

ColorProfile ( Stream stream ) : System

Initializes a new instance of the ColorProfile class.

ColorProfile ( string fileName ) : System

Initializes a new instance of the ColorProfile class.

Private Methods

Method Description
ColorProfile ( string name, byte data ) : System
DetermineColorSpace ( string colorSpace ) : ColorSpace
Initialize ( ) : void
Load ( string resourcePath, string resourceName ) : ColorProfile

Method Details

ColorProfile() public method

Initializes a new instance of the ColorProfile class.
public ColorProfile ( Byte data ) : System
data Byte A byte array containing the profile.
return System

ColorProfile() public method

Initializes a new instance of the ColorProfile class.
public ColorProfile ( Stream stream ) : System
stream Stream A stream containing the profile.
return System

ColorProfile() public method

Initializes a new instance of the ColorProfile class.
public ColorProfile ( string fileName ) : System
fileName string The fully qualified name of the profile file, or the relative profile file name.
return System