 | CsLab Class |
Represents a CIE-based ABC color space with two transformation stages.
Inheritance Hierarchy
Namespace:
Patagames.Pdf.Net.ColorSpace
Assemblies:
Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.84.2704
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.84.2704
Syntaxpublic class CsLab : CIEBased
Public Class CsLab
Inherits CIEBased
public ref class CsLab : public CIEBased
type CsLab =
class
inherit CIEBased
end
public class CsLab extends CIEBased
Patagames.Pdf.Net.ColorSpace.CsLab = function();
Type.createClass(
'Patagames.Pdf.Net.ColorSpace.CsLab',
Patagames.Pdf.Net.ColorSpace.CIEBased);
The CsLab type exposes the following members.
Constructors
| Name | Description |
---|
 | CsLab |
Creates new color space objects
|
Top
Properties
| Name | Description |
---|
 | aMax |
Gets the maximum bound of the range of valid values for the a* component of the color space.
|
 | aMin |
Gets the minimum bound of the range of valid values for the a* component of the color space.
|
 | bMax |
Gets the maximum bound of the range of valid values for the b* component of the color space.
|
 | bMin |
Gets the minimum bound of the range of valid values for the b* component of the color space.
|
 | Name |
Gets the name of the color space.
(Overrides PdfColorSpaceName.) |
Top
Remarks
In this type of space, A, B, and C represent the L*, a*, and b* components of a CIE 1976 L* a* b* space.
The range of the first (L*) component is always 0 to 100; the ranges of the second and third(a* and b*)
components are defined by the
aMin,
aMax and
bMin,
bMax properties.
See Also