/* Copyright (C) 2001-2023 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. Refer to licensing information at http://www.artifex.com or contact Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco, CA 94129, USA, for further information. */ /* Interface to color table lookup and interpolation */ #ifndef gxctable_INCLUDED # define gxctable_INCLUDED #include "gxfixed.h" #include "gxfrac.h" #include "gstypes.h" /* * Define a 3- or 4-D color lookup table. * n is the number of dimensions (input indices), 3 or 4. * dims[0..n-1] are the table dimensions. * m is the number of output values, typically 3 (RGB) or 4 (CMYK). * For n = 3: * table[i], 0 <= i < dims[0], point to strings of length * dims[1] x dims[2] x m. * For n = 4: * table[i], 0 <= i < dims[0] x dims[1], points to strings of length * dims[2] x dims[3] x m. * It isn't really necessary to store the size of each string, since * they're all the same size, but it makes things a lot easier for the GC. */ typedef struct gx_color_lookup_table_s { int n; int dims[4]; /* [ndims] */ int m; const gs_const_string *table; } gx_color_lookup_table; /* * Interpolate in a 3- or 4-D color lookup table. * pi[0..n-1] are the table indices, guaranteed to be in the ranges * [0..dims[n]-1] respectively. * Return interpolated values in pv[0..m-1]. */ /* Return the nearest value without interpolation. */ void gx_color_interpolate_nearest(const fixed * pi, const gx_color_lookup_table * pclt, frac * pv); /* Use trilinear interpolation. */ void gx_color_interpolate_linear(const fixed * pi, const gx_color_lookup_table * pclt, frac * pv); #endif /* gxctable_INCLUDED */