/// **************************************************************************
///
/// $Id: ICCMatrixBasedInputProfile.java,v 1.1 2002/07/25 14:56:54 grosbois Exp $
///
/// Copyright Eastman Kodak Company, 343 State Street, Rochester, NY 14650
/// $Date $
/// ***************************************************************************
///
using System;
using ColorSpace = CSJ2K.Color.ColorSpace;
using ColorSpaceException = CSJ2K.Color.ColorSpaceException;
using RandomAccessIO = CSJ2K.j2k.io.RandomAccessIO;
namespace CSJ2K.Icc
{
/// This class enables an application to construct an 3 component ICCProfile
///
///
/// 1.0
///
/// Bruce A. Kern
///
public class ICCMatrixBasedInputProfile:ICCProfile
{
/// Factory method to create ICCMatrixBasedInputProfile based on a
/// suppled profile file.
///
/// contains a disk based ICCProfile.
///
/// the ICCMatrixBasedInputProfile
///
///
///
///
///
public static ICCMatrixBasedInputProfile createInstance(ColorSpace csm)
{
return new ICCMatrixBasedInputProfile(csm);
}
/// Construct an ICCMatrixBasedInputProfile based on a
/// suppled profile file.
///
/// contains a disk based ICCProfile.
///
///
///
///
///
protected internal ICCMatrixBasedInputProfile(ColorSpace csm):base(csm)
{
}
/* end class ICCMatrixBasedInputProfile */
}
}