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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
|
/* Copyright (C) 2001-2012 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., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* gsicc handling for unmanaged color. */
#include "std.h"
#include "string_.h"
#include "stdpre.h"
#include "gstypes.h"
#include "gsmemory.h"
#include "gsstruct.h"
#include "scommon.h"
#include "strmio.h"
#include "gx.h"
#include "gxistate.h"
#include "gxcspace.h"
#include "gsicc_cms.h"
#include "gsicc_cache.h"
/* A link structure for our non-cm color transform */
typedef struct nocm_link_s {
/* device (or default) procs to do the transformation */
gx_cm_color_map_procs cm_procs;
/* Since RGB to CMYK requires BG and UCR, we need to have the
imager state available */
gs_imager_state *pis;
byte num_in;
byte num_out;
gs_memory_t *memory;
} nocm_link_t;
static void gsicc_nocm_transform_general(gx_device *dev, gsicc_link_t *icclink,
void *inputcolor, void *outputcolor,
int num_bytes_in, int num_bytes_out);
/* Functions that should be optimized later to do planar/chunky with
color conversions. Just putting in something that should work
right now */
/* At most, we have 4 input and 4 output ptrs. Since this is used only in
DeviceGray, DeviceRGB and DeviceCMYK cases */
static void
gsicc_nocm_planar_to_planar(gx_device *dev, gsicc_link_t *icclink,
gsicc_bufferdesc_t *input_buff_desc,
gsicc_bufferdesc_t *output_buff_desc,
void *inputbuffer, void *outputbuffer)
{
int k, j;
byte *inputpos[4];
byte *outputpos[4];
byte *in_buffer_ptr = (byte *) inputbuffer;
byte *out_buffer_ptr = (byte *) outputbuffer;
byte in_color[4], out_color[4];
for (k = 0; k < input_buff_desc->num_chan; k++) {
inputpos[k] = in_buffer_ptr + k * input_buff_desc->plane_stride;
}
for (k = 0; k < output_buff_desc->num_chan; k++) {
outputpos[k] = out_buffer_ptr + k * input_buff_desc->plane_stride;
}
/* Note to self. We currently only do this in the transparency buffer
case which has byte representation so just stepping through
plane_stride is ok at this time. */
for (k = 0; k < input_buff_desc->plane_stride ; k++) {
for (j = 0; j < input_buff_desc->num_chan; j++) {
in_color[j] = *(inputpos[j]);
inputpos[j] += input_buff_desc->bytes_per_chan;
}
gsicc_nocm_transform_general(dev, icclink, (void*) &(in_color[0]),
(void*) &(out_color[0]), 1, 1);
for (j = 0; j < output_buff_desc->num_chan; j++) {
*(outputpos[j]) = out_color[j];
outputpos[j] += output_buff_desc->bytes_per_chan;
}
}
}
/* This is not really used yet */
static void
gsicc_nocm_planar_to_chunky(gx_device *dev, gsicc_link_t *icclink,
gsicc_bufferdesc_t *input_buff_desc,
gsicc_bufferdesc_t *output_buff_desc,
void *inputbuffer, void *outputbuffer)
{
}
/* This is not really used yet */
static void
gsicc_nocm_chunky_to_planar(gx_device *dev, gsicc_link_t *icclink,
gsicc_bufferdesc_t *input_buff_desc,
gsicc_bufferdesc_t *output_buff_desc,
void *inputbuffer, void *outputbuffer)
{
}
static void
gsicc_nocm_chunky_to_chunky(gx_device *dev, gsicc_link_t *icclink,
gsicc_bufferdesc_t *input_buff_desc,
gsicc_bufferdesc_t *output_buff_desc,
void *inputbuffer, void *outputbuffer)
{
int k, j;
byte *inputpos = (byte *) inputbuffer;
byte *outputpos = (byte *) outputbuffer;
byte *inputcolor, *outputcolor;
int num_bytes_in = input_buff_desc->bytes_per_chan;
int num_bytes_out = output_buff_desc->bytes_per_chan;
int pixel_in_step = num_bytes_in * input_buff_desc->num_chan;
int pixel_out_step = num_bytes_out * output_buff_desc->num_chan;
/* Do row by row. */
for (k = 0; k < input_buff_desc->num_rows ; k++) {
inputcolor = inputpos;
outputcolor = outputpos;
for (j = 0; j < input_buff_desc->pixels_per_row; j++) {
gsicc_nocm_transform_general(dev, icclink, (void*) inputcolor,
(void*) outputcolor, num_bytes_in,
num_bytes_out);
inputcolor += pixel_in_step;
outputcolor += pixel_out_step;
}
inputpos += input_buff_desc->row_stride;
outputpos += output_buff_desc->row_stride;
}
}
/* Transform an entire buffer using the generic (non color managed)
transformations */
static void
gsicc_nocm_transform_color_buffer(gx_device *dev, gsicc_link_t *icclink,
gsicc_bufferdesc_t *input_buff_desc,
gsicc_bufferdesc_t *output_buff_desc,
void *inputbuffer, void *outputbuffer)
{
/* Since we have to do the mappings to and from frac colors we will for
now just call the gsicc_nocm_transform_color as we step through the
buffers. This process can be significantly sped up */
if (input_buff_desc->is_planar) {
if (output_buff_desc->is_planar) {
gsicc_nocm_planar_to_planar(dev, icclink, input_buff_desc,
output_buff_desc, inputbuffer,
outputbuffer);
} else {
gsicc_nocm_planar_to_chunky(dev, icclink, input_buff_desc,
output_buff_desc, inputbuffer,
outputbuffer);
}
} else {
if (output_buff_desc->is_planar) {
gsicc_nocm_chunky_to_planar(dev, icclink, input_buff_desc,
output_buff_desc, inputbuffer,
outputbuffer);
} else {
gsicc_nocm_chunky_to_chunky(dev, icclink, input_buff_desc,
output_buff_desc, inputbuffer,
outputbuffer);
}
}
return;
}
/* Shared function between the single and buffer conversions */
static void
gsicc_nocm_transform_general(gx_device *dev, gsicc_link_t *icclink,
void *inputcolor, void *outputcolor,
int num_bytes_in, int num_bytes_out)
{
/* Input data is either single byte or 2 byte color values. The
color mapping procs work on frac values so we have to sandwich
the transformation between to and from frac conversions. We are only
doing at most 4 source colors here */
nocm_link_t *link = (nocm_link_t*) icclink->link_handle;
byte num_in = link->num_in;
byte num_out = link->num_out;
frac frac_in[4];
frac frac_out[GX_DEVICE_COLOR_MAX_COMPONENTS];
int k;
if (num_bytes_in == 2) {
unsigned short *data = (unsigned short *) inputcolor;
for (k = 0; k < num_in; k++) {
frac_in[k] = ushort2frac(data[k]);
}
} else {
byte *data = (byte *) inputcolor;
for (k = 0; k < num_in; k++) {
frac_in[k] = byte2frac(data[k]);
}
}
/* Use the device procedure */
switch (num_in) {
case 1:
(link->cm_procs.map_gray)(dev, frac_in[0], frac_out);
break;
case 3:
(link->cm_procs.map_rgb)(dev, link->pis, frac_in[0], frac_in[1],
frac_in[2], frac_out);
break;
case 4:
(link->cm_procs.map_cmyk)(dev, frac_in[0], frac_in[1], frac_in[2],
frac_in[3], frac_out);
break;
default:
break;
}
if (num_bytes_out == 2) {
unsigned short *data = (unsigned short *) outputcolor;
for (k = 0; k < num_out; k++) {
data[k] = frac2ushort(frac_out[k]);
}
} else {
byte *data = (byte *) outputcolor;
for (k = 0; k < num_out; k++) {
data[k] = frac2byte(frac_out[k]);
}
}
return;
}
/* Transform a single color using the generic (non color managed)
transformations */
static void
gsicc_nocm_transform_color(gx_device *dev, gsicc_link_t *icclink, void *inputcolor,
void *outputcolor, int num_bytes)
{
gsicc_nocm_transform_general(dev, icclink, inputcolor, outputcolor,
num_bytes, num_bytes);
}
static void
gsicc_nocm_freelink(gsicc_link_t *icclink)
{
nocm_link_t *nocm_link = (nocm_link_t*) icclink->link_handle;
if (nocm_link->pis != NULL) {
if (nocm_link->pis->black_generation != NULL) {
gs_free_object(nocm_link->memory, nocm_link->pis->black_generation,
"gsicc_nocm_freelink");
}
if (nocm_link->pis->undercolor_removal != NULL) {
gs_free_object(nocm_link->memory, nocm_link->pis->undercolor_removal,
"gsicc_nocm_freelink");
}
gs_free_object(nocm_link->memory, nocm_link->pis, "gsicc_nocm_freelink");
}
}
/* Since this is the only occurence of this object we are not going to
fool aroung with reference counting and closure functions. When
the link is destroyed, we will simply free the bytes */
static gx_transfer_map*
gsicc_nocm_copy_curve(gx_transfer_map *in_map, gs_memory_t *mem)
{
gx_transfer_map *out_map;
if (in_map == NULL) {
return NULL;
} else {
out_map = (gx_transfer_map*) gs_alloc_bytes(mem, sizeof(gx_transfer_map),
"gsicc_nocm_copy_curve");
out_map->proc = in_map->proc;
memcpy(&(out_map->values[0]), &(in_map->values[0]),
sizeof(frac) * transfer_map_size);
out_map->id = gs_no_id;
return out_map;
}
}
/* Get the link, which is the mapping procedure in this non color managed
transformation case. */
gsicc_link_t*
gsicc_nocm_get_link(const gs_imager_state *pis, gx_device *dev,
gs_color_space_index src_index)
{
gsicc_link_t *result;
gsicc_hashlink_t hash;
nocm_link_t *nocm_link;
gs_memory_t *mem = pis->memory->non_gc_memory;
const gx_cm_color_map_procs * cm_procs;
/* If the cm_procs are forwarding due to the overprint device or other
odd thing, drill down now and get the proper ones */
if (fwd_uses_fwd_cmap_procs(dev)) {
cm_procs = fwd_get_target_cmap_procs(dev);
} else {
cm_procs = dev_proc(dev, get_color_mapping_procs)(dev);
}
/* We will add this to the link cache so that we can avoid the issue
of black_generation and undercolor removal being GC values.
Since the link is not GC we would need to copy the contents over
each time a link was requested. This could be costly if we had
a lot of link requests. */
hash.rend_hash = 0;
hash.des_hash = dev->color_info.num_components;
hash.src_hash = src_index;
hash.link_hashcode = src_index + hash.des_hash * 256;
/* Check the cache for a hit. */
result = gsicc_findcachelink(hash, pis->icc_link_cache, false, false);
if (result != NULL) {
return result;
}
/* If not, then lets create a new one. This may actually return a link if
another thread has already created it while we were trying to do so */
if (gsicc_alloc_link_entry(pis->icc_link_cache, &result, hash, false, false))
return result;
/* Now compute the link contents */
result->procs.map_buffer = gsicc_nocm_transform_color_buffer;
result->procs.map_color = gsicc_nocm_transform_color;
result->procs.free_link = gsicc_nocm_freelink;
result->hashcode = hash;
nocm_link = (nocm_link_t *) gs_alloc_bytes(mem, sizeof(nocm_link_t),
"gsicc_nocm_get_link");
result->link_handle = (void*) nocm_link;
nocm_link->memory = mem;
/* Create a dummy imager state and populate the ucr/bg values. This
is the only part that we need */
if (pis == NULL ||
(pis->black_generation == NULL && pis->undercolor_removal == NULL)) {
nocm_link->pis = NULL;
} else {
nocm_link->pis = (gs_imager_state*)
gs_alloc_bytes(mem, sizeof(gs_imager_state),
"gsicc_nocm_get_link");
nocm_link->pis->black_generation = (gx_transfer_map*)
gsicc_nocm_copy_curve(pis->black_generation, mem);
nocm_link->pis->undercolor_removal = (gx_transfer_map*)
gsicc_nocm_copy_curve(pis->undercolor_removal, mem);
}
nocm_link->num_out = min(dev->color_info.num_components,
GS_CLIENT_COLOR_MAX_COMPONENTS);
nocm_link->cm_procs.map_cmyk = cm_procs->map_cmyk;
nocm_link->cm_procs.map_rgb = cm_procs->map_rgb;
nocm_link->cm_procs.map_gray = cm_procs->map_gray;
nocm_link->num_in = src_index;
if (result != NULL) {
gsicc_set_link_data(result, nocm_link, NULL, hash,
pis->icc_link_cache->lock, false, false);
}
return result;
}
|