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 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
|
/*
* Test the CMYK color separation code for CUPS.
*
* Copyright 2007-2011 by Apple Inc.
* Copyright 1993-2006 by Easy Software Products, All Rights Reserved.
*
* These coded instructions, statements, and computer programs are the
* property of Apple Inc. and are protected by Federal copyright
* law. Distribution and use rights are outlined in the file "COPYING"
* which should have been included with this file.
*
* Contents:
*
* test_gray() - Test grayscale separations...
* test_rgb() - Test color separations...
* main() - Do color separation tests.
*/
/*
* Include necessary headers.
*/
#include <config.h>
#include <string.h>
#include <ctype.h>
#include "driver.h"
#include <sys/stat.h>
void test_gray(int num_comps, const char *basename);
void test_rgb(int num_comps, const char *basename);
/*
* 'main()' - Do color separation tests.
*/
int /* O - Exit status */
main(int argc, /* I - Number of command-line arguments */
char *argv[]) /* I - Command-line arguments */
{
/*
* Make the test directory...
*/
mkdir("test", 0755);
/*
* Run tests for K, Kk, CMY, CMYK, CcMmYK, and CcMmYKk separations...
*/
test_rgb(1, "test/K-rgb");
test_rgb(2, "test/Kk-rgb");
test_rgb(3, "test/CMY-rgb");
test_rgb(4, "test/CMYK-rgb");
test_rgb(6, "test/CcMmYK-rgb");
test_rgb(7, "test/CcMmYKk-rgb");
test_gray(1, "test/K-gray");
test_gray(2, "test/Kk-gray");
test_gray(3, "test/CMY-gray");
test_gray(4, "test/CMYK-gray");
test_gray(6, "test/CcMmYK-gray");
test_gray(7, "test/CcMmYKk-gray");
/*
* Return with no errors...
*/
return (0);
}
/*
* 'test_gray()' - Test grayscale separations...
*/
void
test_gray(int num_comps, /* I - Number of components */
const char *basename) /* I - Base filename of output */
{
int i; /* Looping var */
char filename[255]; /* Output filename */
char line[255]; /* Line from PGM file */
int width, height; /* Width and height of test image */
int x, y; /* Current coordinate in image */
int r, g, b; /* Current RGB color */
unsigned char input[7000]; /* Line to separate */
short output[48000], /* Output separation data */
*outptr; /* Pointer in output */
FILE *in; /* Input PPM file */
FILE *out[CUPS_MAX_CHAN];
/* Output PGM files */
FILE *comp; /* Composite output */
cups_cmyk_t *cmyk; /* Color separation */
/*
* Open the test image...
*/
in = fopen("image.pgm", "rb");
while (fgets(line, sizeof(line), in) != NULL)
if (isdigit(line[0]))
break;
sscanf(line, "%d%d", &width, &height);
fgets(line, sizeof(line), in);
/*
* Create the color separation...
*/
cmyk = cupsCMYKNew(num_comps);
switch (num_comps)
{
case 2 : /* Kk */
cupsCMYKSetLtDk(cmyk, 0, 0.5, 1.0);
break;
case 4 :
cupsCMYKSetGamma(cmyk, 2, 1.0, 0.9);
cupsCMYKSetBlack(cmyk, 0.5, 1.0);
break;
case 6 : /* CcMmYK */
cupsCMYKSetLtDk(cmyk, 0, 0.5, 1.0);
cupsCMYKSetLtDk(cmyk, 2, 0.5, 1.0);
cupsCMYKSetGamma(cmyk, 4, 1.0, 0.9);
cupsCMYKSetBlack(cmyk, 0.5, 1.0);
break;
case 7 : /* CcMmYKk */
cupsCMYKSetLtDk(cmyk, 0, 0.5, 1.0);
cupsCMYKSetLtDk(cmyk, 2, 0.5, 1.0);
cupsCMYKSetGamma(cmyk, 4, 1.0, 0.9);
cupsCMYKSetLtDk(cmyk, 5, 0.5, 1.0);
break;
}
/*
* Open the color separation files...
*/
for (i = 0; i < num_comps; i ++)
{
sprintf(filename, "%s%d.pgm", basename, i);
out[i] = fopen(filename, "wb");
fprintf(out[i], "P5\n%d %d 255\n", width, height);
}
sprintf(filename, "%s.ppm", basename);
comp = fopen(filename, "wb");
fprintf(comp, "P6\n%d %d 255\n", width, height);
/*
* Read the image and do the separations...
*/
for (y = 0; y < height; y ++)
{
fread(input, width, 1, in);
cupsCMYKDoGray(cmyk, input, output, width);
for (x = 0, outptr = output; x < width; x ++, outptr += num_comps)
{
for (i = 0; i < num_comps; i ++)
putc(255 - 255 * outptr[i] / 4095, out[i]);
r = 4095;
g = 4095;
b = 4095;
switch (num_comps)
{
case 1 :
r -= outptr[0];
g -= outptr[0];
b -= outptr[0];
break;
case 2 :
r -= outptr[0];
g -= outptr[0];
b -= outptr[0];
r -= outptr[1] / 2;
g -= outptr[1] / 2;
b -= outptr[1] / 2;
break;
case 3 :
r -= outptr[0];
g -= outptr[1];
b -= outptr[2];
break;
case 4 :
r -= outptr[0];
g -= outptr[1];
b -= outptr[2];
r -= outptr[3];
g -= outptr[3];
b -= outptr[3];
break;
case 6 :
r -= outptr[0] + outptr[1] / 2;
g -= outptr[2] + outptr[3] / 3;
b -= outptr[4];
r -= outptr[5];
g -= outptr[5];
b -= outptr[5];
break;
case 7 :
r -= outptr[0] + outptr[1] / 2;
g -= outptr[2] + outptr[3] / 3;
b -= outptr[4];
r -= outptr[5] + outptr[6] / 2;
g -= outptr[5] + outptr[6] / 2;
b -= outptr[5] + outptr[6] / 2;
break;
}
if (r < 0)
putc(0, comp);
else
putc(255 * r / 4095, comp);
if (g < 0)
putc(0, comp);
else
putc(255 * g / 4095, comp);
if (b < 0)
putc(0, comp);
else
putc(255 * b / 4095, comp);
}
}
for (i = 0; i < num_comps; i ++)
fclose(out[i]);
fclose(comp);
fclose(in);
cupsCMYKDelete(cmyk);
}
/*
* 'test_rgb()' - Test color separations...
*/
void
test_rgb(int num_comps, /* I - Number of components */
const char *basename) /* I - Base filename of output */
{
int i; /* Looping var */
char filename[255]; /* Output filename */
char line[255]; /* Line from PPM file */
int width, height; /* Width and height of test image */
int x, y; /* Current coordinate in image */
int r, g, b; /* Current RGB color */
unsigned char input[7000]; /* Line to separate */
short output[48000], /* Output separation data */
*outptr; /* Pointer in output */
FILE *in; /* Input PPM file */
FILE *out[CUPS_MAX_CHAN];
/* Output PGM files */
FILE *comp; /* Composite output */
cups_cmyk_t *cmyk; /* Color separation */
/*
* Open the test image...
*/
in = fopen("image.ppm", "rb");
while (fgets(line, sizeof(line), in) != NULL)
if (isdigit(line[0]))
break;
sscanf(line, "%d%d", &width, &height);
fgets(line, sizeof(line), in);
/*
* Create the color separation...
*/
cmyk = cupsCMYKNew(num_comps);
cupsCMYKSetBlack(cmyk, 0.5, 1.0);
switch (num_comps)
{
case 2 : /* Kk */
cupsCMYKSetLtDk(cmyk, 0, 0.5, 1.0);
break;
case 6 : /* CcMmYK */
cupsCMYKSetGamma(cmyk, 0, 1.0, 0.8);
cupsCMYKSetLtDk(cmyk, 0, 0.5, 1.0);
cupsCMYKSetGamma(cmyk, 2, 1.0, 0.8);
cupsCMYKSetLtDk(cmyk, 2, 0.5, 1.0);
break;
case 7 : /* CcMmYKk */
cupsCMYKSetGamma(cmyk, 0, 1.0, 0.8);
cupsCMYKSetLtDk(cmyk, 0, 0.5, 1.0);
cupsCMYKSetGamma(cmyk, 2, 1.0, 0.8);
cupsCMYKSetLtDk(cmyk, 2, 0.5, 1.0);
cupsCMYKSetLtDk(cmyk, 5, 0.5, 1.0);
break;
}
/*
* Open the color separation files...
*/
for (i = 0; i < num_comps; i ++)
{
sprintf(filename, "%s%d.pgm", basename, i);
out[i] = fopen(filename, "wb");
fprintf(out[i], "P5\n%d %d 255\n", width, height);
}
sprintf(filename, "%s.ppm", basename);
comp = fopen(filename, "wb");
fprintf(comp, "P6\n%d %d 255\n", width, height);
/*
* Read the image and do the separations...
*/
for (y = 0; y < height; y ++)
{
fread(input, width, 3, in);
cupsCMYKDoRGB(cmyk, input, output, width);
for (x = 0, outptr = output; x < width; x ++, outptr += num_comps)
{
for (i = 0; i < num_comps; i ++)
putc(255 - 255 * outptr[i] / 4095, out[i]);
r = 4095;
g = 4095;
b = 4095;
switch (num_comps)
{
case 1 :
r -= outptr[0];
g -= outptr[0];
b -= outptr[0];
break;
case 2 :
r -= outptr[0];
g -= outptr[0];
b -= outptr[0];
r -= outptr[1] / 2;
g -= outptr[1] / 2;
b -= outptr[1] / 2;
break;
case 3 :
r -= outptr[0];
g -= outptr[1];
b -= outptr[2];
break;
case 4 :
r -= outptr[0];
g -= outptr[1];
b -= outptr[2];
r -= outptr[3];
g -= outptr[3];
b -= outptr[3];
break;
case 6 :
r -= outptr[0] + outptr[1] / 2;
g -= outptr[2] + outptr[3] / 3;
b -= outptr[4];
r -= outptr[5];
g -= outptr[5];
b -= outptr[5];
break;
case 7 :
r -= outptr[0] + outptr[1] / 2;
g -= outptr[2] + outptr[3] / 3;
b -= outptr[4];
r -= outptr[5] + outptr[6] / 2;
g -= outptr[5] + outptr[6] / 2;
b -= outptr[5] + outptr[6] / 2;
break;
}
if (r < 0)
putc(0, comp);
else
putc(255 * r / 4095, comp);
if (g < 0)
putc(0, comp);
else
putc(255 * g / 4095, comp);
if (b < 0)
putc(0, comp);
else
putc(255 * b / 4095, comp);
}
}
for (i = 0; i < num_comps; i ++)
fclose(out[i]);
fclose(comp);
fclose(in);
cupsCMYKDelete(cmyk);
}
|