icsmap.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* Copyright (C) 1994, 1999 Aladdin Enterprises. All rights reserved.
  2. This file is part of AFPL Ghostscript.
  3. AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or
  4. distributor accepts any responsibility for the consequences of using it, or
  5. for whether it serves any particular purpose or works at all, unless he or
  6. she says so in writing. Refer to the Aladdin Free Public License (the
  7. "License") for full details.
  8. Every copy of AFPL Ghostscript must include a copy of the License, normally
  9. in a plain ASCII text file named PUBLIC. The License grants you the right
  10. to copy, modify and redistribute AFPL Ghostscript, but only under certain
  11. conditions described in the License. Among other things, the License
  12. requires that the copyright notice and this notice be preserved on all
  13. copies.
  14. */
  15. /*$Id: icsmap.h,v 1.2 2000/09/19 19:00:42 lpd Exp $ */
  16. /* Interface to shared routines for loading the cached color space maps. */
  17. #ifndef icsmap_INCLUDED
  18. # define icsmap_INCLUDED
  19. /*
  20. * Set up to load a cached map for an Indexed or substituted Separation
  21. * color space. The implementation is in zcsindex.c. When the map1
  22. * procedure is called, the following structure is on the e_stack:
  23. */
  24. #define num_csme 5
  25. # define csme_num_components (-4) /* t_integer */
  26. # define csme_map (-3) /* t_struct (bytes) */
  27. # define csme_proc (-2) /* -procedure- */
  28. # define csme_hival (-1) /* t_integer */
  29. # define csme_index 0 /* t_integer */
  30. /*
  31. * Note that the underlying color space parameter is a direct space, not a
  32. * base space, since the underlying space of an Indexed color space may be
  33. * a Separation or DeviceN space.
  34. */
  35. int zcs_begin_map(P6(i_ctx_t *i_ctx_p, gs_indexed_map ** pmap,
  36. const ref * pproc, int num_entries,
  37. const gs_direct_color_space * base_space,
  38. op_proc_t map1));
  39. #endif /* icsmap_INCLUDED */