1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
/* Copyright (C) 2001-2021 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., 1305 Grant Avenue - Suite 200, Novato,
CA 94945, U.S.A., +1(415)492-9861, for further information.
*/
/* Device to set monochrome mode in PCL */
/* This device is one of the 'subclassing' devices, part of a chain or pipeline
* of devices, each of which can process some aspect of the graphics methods
* before passing them on to the next device in the chain.
* In this case, the device simply returns monochrome color_mapping procs
* instead of color ones. When we want to go back to color, we just
* remove this device.
*/
#include "math_.h"
#include "memory_.h"
#include "gx.h"
#include "gserrors.h"
#include "gsparam.h"
#include "gxdevice.h"
#include "gsdevice.h" /* requires gsmatrix.h */
#include "gxdcolor.h" /* for gx_device_black/white */
#include "gxiparam.h" /* for image source size */
#include "gxgstate.h"
#include "gxpaint.h"
#include "gxpath.h"
#include "gxcpath.h"
#include "gxcmap.h" /* color mapping procs */
#include "gsstype.h"
#include "gdevprn.h"
#include "gdevp14.h" /* Needed to patch up the procs after compositor creation */
#include "gdevsclass.h"
#include "gdevmplt.h"
#include "gxdcconv.h" /* for color_rgb_to_gray and color_cmyk_to_gray */
#include "gxdevsop.h"
/* Device procedures, we only need one */
static dev_proc_get_color_mapping_procs(pcl_mono_palette_get_color_mapping_procs);
/* The device prototype */
#define MAX_COORD (max_int_in_fixed - 1000)
#define MAX_RESOLUTION 4000
/* GC descriptor */
#define public_st_pcl_mono_palette_device() /* in gsdevice.c */\
gs_public_st_complex_only(st_pcl_mono_palette_device, gx_device, "PCL_Mono_Palette",\
0, pcl_mono_palette_enum_ptrs, pcl_mono_palette_reloc_ptrs, default_subclass_finalize)
static
ENUM_PTRS_WITH(pcl_mono_palette_enum_ptrs, gx_device *dev);
return 0; /* default case */
case 0:ENUM_RETURN(gx_device_enum_ptr(dev->parent));
case 1:ENUM_RETURN(gx_device_enum_ptr(dev->child));
ENUM_PTRS_END
static RELOC_PTRS_WITH(pcl_mono_palette_reloc_ptrs, gx_device *dev)
{
dev->parent = gx_device_reloc_ptr(dev->parent, gcst);
dev->child = gx_device_reloc_ptr(dev->child, gcst);
}
RELOC_PTRS_END
public_st_pcl_mono_palette_device();
static int
pcl_mono_dev_spec_op(gx_device *dev, int dev_spec_op, void *data, int size)
{
if (dev_spec_op == gxdso_supports_hlcolor)
return 0;
if (dev->child)
return dev_proc(dev->child, dev_spec_op)(dev->child, dev_spec_op, data, size);
return_error(gs_error_rangecheck);
}
static int
pcl_mono_text_begin(gx_device *dev, gs_gstate *pgs, const gs_text_params_t *text,
gs_font *font, const gx_clip_path *pcpath, gs_text_enum_t **ppte)
{
/* The 'high level' version of the color has not been 'monochromized' by this
* device, so ensure that routines that we call (notably pdfwrite) don't
* think it's valid and use it. */
pgs->color[0].dev_color->ccolor_valid = 0;
if (dev->child)
return dev_proc(dev->child, text_begin)(dev->child, pgs, text, font, pcpath, ppte);
else
return gx_default_text_begin(dev, pgs, text, font, pcpath, ppte);
}
static void
pcl_mono_palette_initialize(gx_device *dev)
{
default_subclass_initialize_device_procs(dev);
set_dev_proc(dev, get_color_mapping_procs, pcl_mono_palette_get_color_mapping_procs);
/* We must override begin_typed_image here with the default. If
* we don't, then we forward down to the underlying devices own
* begin_typed_image, and the color calls done during that bypass
* the monochroming behaviour. See: page 32 of 75dpi png rendering of
* tests_private/pcl/pcl5ccet/15-01.BIN for an example. */
set_dev_proc(dev, begin_typed_image, gx_default_begin_typed_image);
set_dev_proc(dev, dev_spec_op, pcl_mono_dev_spec_op);
set_dev_proc(dev, text_begin, pcl_mono_text_begin);
}
const
gx_device_mplt gs_pcl_mono_palette_device =
{
/*
* Define the device as 8-bit gray scale to avoid computing halftones.
*/
std_device_dci_type_body_sc(gx_device_mplt, pcl_mono_palette_initialize,
"PCL_Mono_Palette", &st_pcl_mono_palette_device,
MAX_COORD, MAX_COORD,
MAX_RESOLUTION, MAX_RESOLUTION,
1, 8, 255, 0, 256, 1, NULL, NULL, NULL)
};
#undef MAX_COORD
#undef MAX_RESOLUTION
/* The justification for this device, these 3 procedures map colour values
* to gray values
*/
static void
pcl_gray_cs_to_cm(const gx_device * dev, frac gray, frac out[])
{
pcl_mono_palette_subclass_data *psubclass_data = dev->subclass_data;
/* assert(strncmp(dev->dname, "PCL_Mono_Palette", 16) == 0) - otherwise we are being
* called with the wrong dev! */
if (psubclass_data->device_cm) {
/* just pass it along */
psubclass_data->device_cm_procs->map_gray(psubclass_data->device_cm, gray, out);
}
}
static void
pcl_rgb_cs_to_cm(const gx_device * dev, const gs_gstate * pgs, frac r, frac g,
frac b, frac out[])
{
pcl_mono_palette_subclass_data *psubclass_data = dev->subclass_data;
frac gray;
/* assert(strncmp(dev->dname, "PCL_Mono_Palette", 16) == 0) - otherwise we are being
* called with the wrong dev! */
if (psubclass_data->device_cm) {
gray = color_rgb_to_gray(r, g, b, NULL);
psubclass_data->device_cm_procs->map_rgb(psubclass_data->device_cm, pgs, gray, gray, gray, out);
}
}
static void
pcl_cmyk_cs_to_cm(const gx_device * dev, frac c, frac m, frac y, frac k, frac out[])
{
pcl_mono_palette_subclass_data *psubclass_data = dev->subclass_data;
frac gray;
/* assert(strncmp(dev->dname, "PCL_Mono_Palette", 16) == 0) - otherwise we are being
* called with the wrong dev! */
if (psubclass_data->device_cm) {
gray = color_cmyk_to_gray(c, m, y, k, NULL);
psubclass_data->device_cm_procs->map_cmyk(psubclass_data->device_cm, gray, gray, gray, gray, out);
}
}
static gx_cm_color_map_procs pcl_mono_procs =
{
pcl_gray_cs_to_cm,
pcl_rgb_cs_to_cm,
pcl_cmyk_cs_to_cm
};
const gx_cm_color_map_procs *pcl_mono_palette_get_color_mapping_procs(const gx_device *dev,
const gx_device **tdev)
{
pcl_mono_palette_subclass_data *psubclass_data = dev->subclass_data;
/* assert(strncmp(dev->dname, "PCL_Mono_Palette", 16) == 0) - otherwise we are being
* called with the wrong dev! */
*tdev = dev;
if (psubclass_data->device_cm_procs == NULL) {
psubclass_data->device_cm_procs = (gx_cm_color_map_procs *)dev_proc(dev->child, get_color_mapping_procs)(dev->child, &psubclass_data->device_cm);
}
return &pcl_mono_procs;
}
|