typedef
struct
_t_PDEDeviceNColors
*
PDEDeviceNColors
;
Creates an object that can be used to store n
color components when in a DeviceN color space.
Call PDERelease() to dispose of the returned PDEDeviceNColors object when finished with it.
PDEDeviceNColors
PDEDeviceNColorsCreate(
IN
ASFixed
*
pColorValues
,
IN
ASInt32
numValues
);
pColorValues | IN/OUT A pointer to an array of ASFixed values.
|
numValues | IN/OUT The length of the array.
|
ASFixed
PDEDeviceNColorsGetColorValue(
IN
PDEDeviceNColors
colors
,
IN
ASInt32
index
);
colors | IN/OUT A PDEDeviceNColors object returned by PDEDeviceNColorsCreate().
|
index | IN/OUT The index of the color component to return.
|