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 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
|
/* 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.
*/
/* Default device implementation */
#include "math_.h"
#include "gx.h"
#include "gserrors.h"
#include "gsropt.h"
#include "gxcomp.h"
#include "gxdevice.h"
#include "gxdevsop.h"
/* ---------------- Default device procedures ---------------- */
/*
* Set a color model polarity to be additive or subtractive. In either
* case, indicate an error (and don't modify the polarity) if the current
* setting differs from the desired and is not GX_CINFO_POLARITY_UNKNOWN.
*/
static void
set_cinfo_polarity(gx_device * dev, gx_color_polarity_t new_polarity)
{
#ifdef DEBUG
/* sanity check */
if (new_polarity == GX_CINFO_POLARITY_UNKNOWN) {
dprintf("set_cinfo_polarity: illegal operand\n");
return;
}
#endif
/*
* The meory devices assume that single color devices are gray.
* This may not be true if SeparationOrder is specified. Thus only
* change the value if the current value is unknown.
*/
if (dev->color_info.polarity == GX_CINFO_POLARITY_UNKNOWN)
dev->color_info.polarity = new_polarity;
}
static gx_color_index
(*get_encode_color(gx_device *dev))(gx_device *, const gx_color_value *)
{
dev_proc_encode_color(*encode_proc);
/* use encode_color if it has been provided */
if ((encode_proc = dev_proc(dev, encode_color)) == 0) {
if (dev->color_info.num_components == 1 &&
dev_proc(dev, map_rgb_color) != 0) {
set_cinfo_polarity(dev, GX_CINFO_POLARITY_ADDITIVE);
encode_proc = gx_backwards_compatible_gray_encode;
} else if ( (dev->color_info.num_components == 3 ) &&
(encode_proc = dev_proc(dev, map_rgb_color)) != 0 )
set_cinfo_polarity(dev, GX_CINFO_POLARITY_ADDITIVE);
else if ( dev->color_info.num_components == 4 &&
(encode_proc = dev_proc(dev, map_cmyk_color)) != 0 )
set_cinfo_polarity(dev, GX_CINFO_POLARITY_SUBTRACTIVE);
}
/*
* If no encode_color procedure at this point, the color model had
* better be monochrome (though not necessarily bi-level). In this
* case, it is assumed to be additive, as that is consistent with
* the pre-DeviceN code.
*
* If this is not the case, then the color model had better be known
* to be separable and linear, for there is no other way to derive
* an encoding. This is the case even for weakly linear and separable
* color models with a known polarity.
*/
if (encode_proc == 0) {
if (dev->color_info.num_components == 1 && dev->color_info.depth != 0) {
set_cinfo_polarity(dev, GX_CINFO_POLARITY_ADDITIVE);
if (dev->color_info.max_gray == (1 << dev->color_info.depth) - 1)
encode_proc = gx_default_gray_fast_encode;
else
encode_proc = gx_default_gray_encode;
dev->color_info.separable_and_linear = GX_CINFO_SEP_LIN;
} else if (dev->color_info.separable_and_linear == GX_CINFO_SEP_LIN) {
gx_color_value max_gray = dev->color_info.max_gray;
gx_color_value max_color = dev->color_info.max_color;
if ( (max_gray & (max_gray + 1)) == 0 &&
(max_color & (max_color + 1)) == 0 )
/* NB should be gx_default_fast_encode_color */
encode_proc = gx_default_encode_color;
else
encode_proc = gx_default_encode_color;
}
}
return encode_proc;
}
/*
* Determine if a color model has the properties of a DeviceRGB
* color model. This procedure is, in all likelihood, high-grade
* overkill, but since this is not a performance sensitive area
* no harm is done.
*
* Since there is little benefit to checking the values 0, 1, or
* 1/2, we use the values 1/4, 1/3, and 3/4 in their place. We
* compare the results to see if the intensities match to within
* a tolerance of .01, which is arbitrarily selected.
*/
static bool
is_like_DeviceRGB(gx_device * dev)
{
const gx_cm_color_map_procs * cm_procs;
frac cm_comp_fracs[3];
int i;
if ( dev->color_info.num_components != 3 ||
dev->color_info.polarity != GX_CINFO_POLARITY_ADDITIVE )
return false;
cm_procs = dev_proc(dev, get_color_mapping_procs)(dev);
if (cm_procs == 0 || cm_procs->map_rgb == 0)
return false;
/* check the values 1/4, 1/3, and 3/4 */
cm_procs->map_rgb( dev,
0,
frac_1 / 4,
frac_1 / 3,
3 * frac_1 / 4,
cm_comp_fracs );
/* verify results to .01 */
cm_comp_fracs[0] -= frac_1 / 4;
cm_comp_fracs[1] -= frac_1 / 3;
cm_comp_fracs[2] -= 3 * frac_1 / 4;
for ( i = 0;
i < 3 &&
-frac_1 / 100 < cm_comp_fracs[i] &&
cm_comp_fracs[i] < frac_1 / 100;
i++ )
;
return i == 3;
}
/*
* Similar to is_like_DeviceRGB, but for DeviceCMYK.
*/
static bool
is_like_DeviceCMYK(gx_device * dev)
{
const gx_cm_color_map_procs * cm_procs;
frac cm_comp_fracs[4];
int i;
if ( dev->color_info.num_components != 4 ||
dev->color_info.polarity != GX_CINFO_POLARITY_SUBTRACTIVE )
return false;
cm_procs = dev_proc(dev, get_color_mapping_procs)(dev);
if (cm_procs == 0 || cm_procs->map_cmyk == 0)
return false;
/* check the values 1/4, 1/3, 3/4, and 1/8 */
cm_procs->map_cmyk( dev,
frac_1 / 4,
frac_1 / 3,
3 * frac_1 / 4,
frac_1 / 8,
cm_comp_fracs );
/* verify results to .01 */
cm_comp_fracs[0] -= frac_1 / 4;
cm_comp_fracs[1] -= frac_1 / 3;
cm_comp_fracs[2] -= 3 * frac_1 / 4;
cm_comp_fracs[3] -= frac_1 / 8;
for ( i = 0;
i < 4 &&
-frac_1 / 100 < cm_comp_fracs[i] &&
cm_comp_fracs[i] < frac_1 / 100;
i++ )
;
return i == 4;
}
/*
* Two default decode_color procedures to use for monochrome devices.
* These will make use of the map_color_rgb routine, and use the first
* component of the returned value or its inverse.
*/
static int
gx_default_1_add_decode_color(
gx_device * dev,
gx_color_index color,
gx_color_value cv[1] )
{
gx_color_value rgb[3];
int code = dev_proc(dev, map_color_rgb)(dev, color, rgb);
cv[0] = rgb[0];
return code;
}
static int
gx_default_1_sub_decode_color(
gx_device * dev,
gx_color_index color,
gx_color_value cv[1] )
{
gx_color_value rgb[3];
int code = dev_proc(dev, map_color_rgb)(dev, color, rgb);
cv[0] = gx_max_color_value - rgb[0];
return code;
}
/*
* A default decode_color procedure for DeviceCMYK color models.
*
* There is no generally accurate way of decode a DeviceCMYK color using
* the map_color_rgb method. Unfortunately, there are many older devices
* employ the DeviceCMYK color model but don't provide a decode_color
* method. The code below works on the assumption of full undercolor
* removal and black generation. This may not be accurate, but is the
* best that can be done in the general case without other information.
*/
static int
gx_default_cmyk_decode_color(
gx_device * dev,
gx_color_index color,
gx_color_value cv[4] )
{
/* The device may have been determined to be 'separable'. */
if (dev->color_info.separable_and_linear == GX_CINFO_SEP_LIN)
return gx_default_decode_color(dev, color, cv);
else {
int i, code = dev_proc(dev, map_color_rgb)(dev, color, cv);
gx_color_value min_val = gx_max_color_value;
for (i = 0; i < 3; i++) {
if ((cv[i] = gx_max_color_value - cv[i]) < min_val)
min_val = cv[i];
}
for (i = 0; i < 3; i++)
cv[i] -= min_val;
cv[3] = min_val;
return code;
}
}
/*
* Special case default color decode routine for a canonical 1-bit per
* component DeviceCMYK color model.
*/
static int
gx_1bit_cmyk_decode_color(
gx_device * dev,
gx_color_index color,
gx_color_value cv[4] )
{
cv[0] = ((color & 0x8) != 0 ? gx_max_color_value : 0);
cv[1] = ((color & 0x4) != 0 ? gx_max_color_value : 0);
cv[2] = ((color & 0x2) != 0 ? gx_max_color_value : 0);
cv[3] = ((color & 0x1) != 0 ? gx_max_color_value : 0);
return 0;
}
static int
(*get_decode_color(gx_device * dev))(gx_device *, gx_color_index, gx_color_value *)
{
/* if a method has already been provided, use it */
if (dev_proc(dev, decode_color) != 0)
return dev_proc(dev, decode_color);
/*
* If a map_color_rgb method has been provided, we may be able to use it.
* Currently this will always be the case, as a default value will be
* provided this method. While this default may not be correct, we are not
* introducing any new errors by using it.
*/
if (dev_proc(dev, map_color_rgb) != 0) {
/* if the device has a DeviceRGB color model, use map_color_rgb */
if (is_like_DeviceRGB(dev))
return dev_proc(dev, map_color_rgb);
/* If separable ande linear then use default */
if ( dev->color_info.separable_and_linear == GX_CINFO_SEP_LIN )
return &gx_default_decode_color;
/* gray devices can be handled based on their polarity */
if ( dev->color_info.num_components == 1 &&
dev->color_info.gray_index == 0 )
return dev->color_info.polarity == GX_CINFO_POLARITY_ADDITIVE
? &gx_default_1_add_decode_color
: &gx_default_1_sub_decode_color;
/*
* There is no accurate way to decode colors for cmyk devices
* using the map_color_rgb procedure. Unfortunately, this cases
* arises with some frequency, so it is useful not to generate an
* error in this case. The mechanism below assumes full undercolor
* removal and black generation, which may not be accurate but are
* the best that can be done in the general case in the absence of
* other information.
*
* As a hack to handle certain common devices, if the map_rgb_color
* routine is cmyk_1bit_map_color_rgb, we provide a direct one-bit
* decoder.
*/
if (is_like_DeviceCMYK(dev)) {
if (dev_proc(dev, map_color_rgb) == cmyk_1bit_map_color_rgb)
return &gx_1bit_cmyk_decode_color;
else
return &gx_default_cmyk_decode_color;
}
}
/*
* The separable and linear case will already have been handled by
* code in gx_device_fill_in_procs, so at this point we can only hope
* the device doesn't use the decode_color method.
*/
if (dev->color_info.separable_and_linear == GX_CINFO_SEP_LIN )
return &gx_default_decode_color;
else
return &gx_error_decode_color;
}
/*
* If a device has a linear and separable encode color function then
* set up the comp_bits, comp_mask, and comp_shift fields. Note: This
* routine assumes that the colorant shift factor decreases with the
* component number. See check_device_separable() for a general routine.
*/
void
set_linear_color_bits_mask_shift(gx_device * dev)
{
int i;
byte gray_index = dev->color_info.gray_index;
gx_color_value max_gray = dev->color_info.max_gray;
gx_color_value max_color = dev->color_info.max_color;
int num_components = dev->color_info.num_components;
#define comp_bits (dev->color_info.comp_bits)
#define comp_mask (dev->color_info.comp_mask)
#define comp_shift (dev->color_info.comp_shift)
comp_shift[num_components - 1] = 0;
for ( i = num_components - 1 - 1; i >= 0; i-- ) {
comp_shift[i] = comp_shift[i + 1] +
( i == gray_index ? ilog2(max_gray + 1) : ilog2(max_color + 1) );
}
for ( i = 0; i < num_components; i++ ) {
comp_bits[i] = ( i == gray_index ?
ilog2(max_gray + 1) :
ilog2(max_color + 1) );
comp_mask[i] = (((gx_color_index)1 << comp_bits[i]) - 1)
<< comp_shift[i];
}
#undef comp_bits
#undef comp_mask
#undef comp_shift
}
/* Determine if a number is a power of two. Works only for integers. */
#define is_power_of_two(x) ((((x) - 1) & (x)) == 0)
/*
* This routine attempts to determine if a device's encode_color procedure
* produces gx_color_index values which are 'separable'. A 'separable' value
* means two things. Each colorant has a group of bits in the gx_color_index
* value which is associated with the colorant. These bits are separate.
* I.e. no bit is associated with more than one colorant. If a colorant has
* a value of zero then the bits associated with that colorant are zero.
* These criteria allows the graphics library to build gx_color_index values
* from the colorant values and not using the encode_color routine. This is
* useful and necessary for overprinting, halftoning more
* than four colorants, and the fast shading logic. However this information
* is not setup by the default device macros. Thus we attempt to derive this
* information.
*
* This routine can be fooled. However it usually errors on the side of
* assuing that a device is not separable. In this case it does not create
* any new problems. In theory it can be fooled into believing that a device
* is separable when it is not. However we do not know of any real cases that
* will fool it.
*/
void
check_device_separable(gx_device * dev)
{
int i, j;
gx_device_color_info * pinfo = &(dev->color_info);
int num_components = pinfo->num_components;
byte comp_shift[GX_DEVICE_COLOR_MAX_COMPONENTS];
byte comp_bits[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index comp_mask[GX_DEVICE_COLOR_MAX_COMPONENTS];
gx_color_index color_index;
gx_color_index current_bits = 0;
gx_color_value colorants[GX_DEVICE_COLOR_MAX_COMPONENTS] = { 0 };
/* If this is already known then we do not need to do anything. */
if (pinfo->separable_and_linear != GX_CINFO_UNKNOWN_SEP_LIN)
return;
/* If there is not an encode_color_routine then we cannot proceed. */
if (dev_proc(dev, encode_color) == NULL)
return;
/*
* If these values do not check then we should have an error. However
* we do not know what to do so we are simply exitting and hoping that
* the device will clean up its values.
*/
if (pinfo->gray_index < num_components &&
(!pinfo->dither_grays || pinfo->dither_grays != (pinfo->max_gray + 1)))
return;
if ((num_components > 1 || pinfo->gray_index != 0) &&
(!pinfo->dither_colors || pinfo->dither_colors != (pinfo->max_color + 1)))
return;
/*
* If dither_grays or dither_colors is not a power of two then we assume
* that the device is not separable. In theory this not a requirement
* but it has been true for all of the devices that we have seen so far.
* This assumption also makes the logic in the next section easier.
*/
if (!is_power_of_two(pinfo->dither_grays)
|| !is_power_of_two(pinfo->dither_colors))
return;
/*
* Use the encode_color routine to try to verify that the device is
* separable and to determine the shift count, etc. for each colorant.
*/
color_index = dev_proc(dev, encode_color)(dev, colorants);
if (color_index != 0)
return; /* Exit if zero colorants produce a non zero index */
for (i = 0; i < num_components; i++) {
/* Check this colorant = max with all others = 0 */
for (j = 0; j < num_components; j++)
colorants[j] = 0;
colorants[i] = gx_max_color_value;
color_index = dev_proc(dev, encode_color)(dev, colorants);
if (color_index == 0) /* If no bits then we have a problem */
return;
if (color_index & current_bits) /* Check for overlapping bits */
return;
current_bits |= color_index;
comp_mask[i] = color_index;
/* Determine the shift count for the colorant */
for (j = 0; (color_index & 1) == 0 && color_index != 0; j++)
color_index >>= 1;
comp_shift[i] = j;
/* Determine the bit count for the colorant */
for (j = 0; color_index != 0; j++) {
if ((color_index & 1) == 0) /* check for non-consecutive bits */
return;
color_index >>= 1;
}
comp_bits[i] = j;
/*
* We could verify that the bit count matches the dither_grays or
* dither_colors values, but this is not really required unless we
* are halftoning. Thus we are allowing for non equal colorant sizes.
*/
/* Check for overlap with other colorant if they are all maxed */
for (j = 0; j < num_components; j++)
colorants[j] = gx_max_color_value;
colorants[i] = 0;
color_index = dev_proc(dev, encode_color)(dev, colorants);
if (color_index & comp_mask[i]) /* Check for overlapping bits */
return;
}
/* If we get to here then the device is very likely to be separable. */
pinfo->separable_and_linear = GX_CINFO_SEP_LIN;
for (i = 0; i < num_components; i++) {
pinfo->comp_shift[i] = comp_shift[i];
pinfo->comp_bits[i] = comp_bits[i];
pinfo->comp_mask[i] = comp_mask[i];
}
/*
* The 'gray_index' value allows one colorant to have a different number
* of shades from the remainder. Since the default macros only guess at
* an appropriate value, we are setting its value based upon the data that
* we just determined. Note: In some cases the macros set max_gray to 0
* and dither_grays to 1. This is not valid so ignore this case.
*/
for (i = 0; i < num_components; i++) {
int dither = 1 << comp_bits[i];
if (pinfo->dither_grays != 1 && dither == pinfo->dither_grays) {
pinfo->gray_index = i;
break;
}
}
}
#undef is_power_of_two
/* Fill in NULL procedures in a device procedure record. */
void
gx_device_fill_in_procs(register gx_device * dev)
{
gx_device_set_procs(dev);
fill_dev_proc(dev, open_device, gx_default_open_device);
fill_dev_proc(dev, get_initial_matrix, gx_default_get_initial_matrix);
fill_dev_proc(dev, sync_output, gx_default_sync_output);
fill_dev_proc(dev, output_page, gx_default_output_page);
fill_dev_proc(dev, close_device, gx_default_close_device);
/* see below for map_rgb_color */
fill_dev_proc(dev, map_color_rgb, gx_default_map_color_rgb);
/* NOT fill_rectangle */
fill_dev_proc(dev, tile_rectangle, gx_default_tile_rectangle);
fill_dev_proc(dev, copy_mono, gx_default_copy_mono);
fill_dev_proc(dev, copy_color, gx_default_copy_color);
fill_dev_proc(dev, obsolete_draw_line, gx_default_draw_line);
fill_dev_proc(dev, get_bits, gx_default_get_bits);
fill_dev_proc(dev, get_params, gx_default_get_params);
fill_dev_proc(dev, put_params, gx_default_put_params);
/* see below for map_cmyk_color */
fill_dev_proc(dev, get_xfont_procs, gx_default_get_xfont_procs);
fill_dev_proc(dev, get_xfont_device, gx_default_get_xfont_device);
fill_dev_proc(dev, map_rgb_alpha_color, gx_default_map_rgb_alpha_color);
fill_dev_proc(dev, get_page_device, gx_default_get_page_device);
fill_dev_proc(dev, get_alpha_bits, gx_default_get_alpha_bits);
fill_dev_proc(dev, copy_alpha, gx_default_copy_alpha);
fill_dev_proc(dev, get_band, gx_default_get_band);
fill_dev_proc(dev, copy_rop, gx_default_copy_rop);
fill_dev_proc(dev, fill_path, gx_default_fill_path);
fill_dev_proc(dev, stroke_path, gx_default_stroke_path);
fill_dev_proc(dev, fill_mask, gx_default_fill_mask);
fill_dev_proc(dev, fill_trapezoid, gx_default_fill_trapezoid);
fill_dev_proc(dev, fill_parallelogram, gx_default_fill_parallelogram);
fill_dev_proc(dev, fill_triangle, gx_default_fill_triangle);
fill_dev_proc(dev, draw_thin_line, gx_default_draw_thin_line);
fill_dev_proc(dev, begin_image, gx_default_begin_image);
/*
* We always replace get_alpha_bits, image_data, and end_image with the
* new procedures, and, if in a DEBUG configuration, print a warning if
* the definitions aren't the default ones.
*/
#ifdef DEBUG
# define CHECK_NON_DEFAULT(proc, default, procname)\
BEGIN\
if ( dev_proc(dev, proc) != NULL && dev_proc(dev, proc) != default )\
dprintf2("**** Warning: device %s implements obsolete procedure %s\n",\
dev->dname, procname);\
END
#else
# define CHECK_NON_DEFAULT(proc, default, procname)\
DO_NOTHING
#endif
CHECK_NON_DEFAULT(get_alpha_bits, gx_default_get_alpha_bits,
"get_alpha_bits");
set_dev_proc(dev, get_alpha_bits, gx_default_get_alpha_bits);
CHECK_NON_DEFAULT(image_data, gx_default_image_data, "image_data");
set_dev_proc(dev, image_data, gx_default_image_data);
CHECK_NON_DEFAULT(end_image, gx_default_end_image, "end_image");
set_dev_proc(dev, end_image, gx_default_end_image);
#undef CHECK_NON_DEFAULT
fill_dev_proc(dev, strip_tile_rectangle, gx_default_strip_tile_rectangle);
fill_dev_proc(dev, strip_copy_rop, gx_default_strip_copy_rop);
fill_dev_proc(dev, strip_copy_rop2, gx_default_strip_copy_rop2);
fill_dev_proc(dev, strip_tile_rect_devn, gx_default_strip_tile_rect_devn);
fill_dev_proc(dev, get_clipping_box, gx_default_get_clipping_box);
fill_dev_proc(dev, begin_typed_image, gx_default_begin_typed_image);
fill_dev_proc(dev, get_bits_rectangle, gx_default_get_bits_rectangle);
fill_dev_proc(dev, map_color_rgb_alpha, gx_default_map_color_rgb_alpha);
fill_dev_proc(dev, create_compositor, gx_default_create_compositor);
fill_dev_proc(dev, get_hardware_params, gx_default_get_hardware_params);
fill_dev_proc(dev, text_begin, gx_default_text_begin);
fill_dev_proc(dev, finish_copydevice, gx_default_finish_copydevice);
set_dev_proc(dev, encode_color, get_encode_color(dev));
if (dev->color_info.num_components == 3)
set_dev_proc(dev, map_rgb_color, dev_proc(dev, encode_color));
if (dev->color_info.num_components == 4)
set_dev_proc(dev, map_cmyk_color, dev_proc(dev, encode_color));
if ( dev->color_info.separable_and_linear == GX_CINFO_SEP_LIN ) {
fill_dev_proc(dev, encode_color, gx_default_encode_color);
fill_dev_proc(dev, map_cmyk_color, gx_default_encode_color);
fill_dev_proc(dev, map_rgb_color, gx_default_encode_color);
} else {
/* if it isn't set now punt */
fill_dev_proc(dev, encode_color, gx_error_encode_color);
fill_dev_proc(dev, map_cmyk_color, gx_error_encode_color);
fill_dev_proc(dev, map_rgb_color, gx_error_encode_color);
}
/*
* Fill in the color mapping procedures and the component index
* assignment procedure if they have not been provided by the client.
*
* Because it is difficult to provide default encoding procedures
* that handle level inversion, this code needs to check both
* the number of components and the polarity of color model.
*/
switch (dev->color_info.num_components) {
case 1: /* DeviceGray or DeviceInvertGray */
if (dev_proc(dev, get_color_mapping_procs) == NULL) {
/*
* If not gray then the device must provide the color
* mapping procs.
*/
if (dev->color_info.polarity == GX_CINFO_POLARITY_ADDITIVE) {
fill_dev_proc( dev,
get_color_mapping_procs,
gx_default_DevGray_get_color_mapping_procs );
} else
fill_dev_proc(dev, get_color_mapping_procs, gx_error_get_color_mapping_procs);
}
fill_dev_proc( dev,
get_color_comp_index,
gx_default_DevGray_get_color_comp_index );
break;
case 3:
if (dev_proc(dev, get_color_mapping_procs) == NULL) {
if (dev->color_info.polarity == GX_CINFO_POLARITY_ADDITIVE) {
fill_dev_proc( dev,
get_color_mapping_procs,
gx_default_DevRGB_get_color_mapping_procs );
fill_dev_proc( dev,
get_color_comp_index,
gx_default_DevRGB_get_color_comp_index );
} else {
fill_dev_proc(dev, get_color_mapping_procs, gx_error_get_color_mapping_procs);
fill_dev_proc(dev, get_color_comp_index, gx_error_get_color_comp_index);
}
}
break;
case 4:
fill_dev_proc(dev, get_color_mapping_procs, gx_default_DevCMYK_get_color_mapping_procs);
fill_dev_proc(dev, get_color_comp_index, gx_default_DevCMYK_get_color_comp_index);
break;
default: /* Unknown color model - set error handlers */
if (dev_proc(dev, get_color_mapping_procs) == NULL) {
fill_dev_proc(dev, get_color_mapping_procs, gx_error_get_color_mapping_procs);
fill_dev_proc(dev, get_color_comp_index, gx_error_get_color_comp_index);
}
}
set_dev_proc(dev, decode_color, get_decode_color(dev));
fill_dev_proc(dev, map_color_rgb, gx_default_map_color_rgb);
fill_dev_proc(dev, get_profile, gx_default_get_profile);
fill_dev_proc(dev, set_graphics_type_tag, gx_default_set_graphics_type_tag);
/*
* If the device is known not to support overprint mode, indicate this now.
* Note that we do not insist that a device be use a strict DeviceCMYK
* encoding; any color model that is subtractive and supports the cyan,
* magenta, yellow, and black color components will do. We defer a more
* explicit check until this information is explicitly required.
*/
if ( dev->color_info.opmode == GX_CINFO_OPMODE_UNKNOWN &&
(dev->color_info.num_components < 4 ||
dev->color_info.polarity == GX_CINFO_POLARITY_ADDITIVE ||
dev->color_info.gray_index == GX_CINFO_COMP_NO_INDEX ) )
dev->color_info.opmode = GX_CINFO_OPMODE_NOT;
fill_dev_proc(dev, fill_rectangle_hl_color, gx_default_fill_rectangle_hl_color);
fill_dev_proc(dev, include_color_space, gx_default_include_color_space);
fill_dev_proc(dev, fill_linear_color_scanline, gx_default_fill_linear_color_scanline);
fill_dev_proc(dev, fill_linear_color_trapezoid, gx_default_fill_linear_color_trapezoid);
fill_dev_proc(dev, fill_linear_color_triangle, gx_default_fill_linear_color_triangle);
fill_dev_proc(dev, update_spot_equivalent_colors, gx_default_update_spot_equivalent_colors);
fill_dev_proc(dev, ret_devn_params, gx_default_ret_devn_params);
fill_dev_proc(dev, fillpage, gx_default_fillpage);
fill_dev_proc(dev, copy_alpha_hl_color, gx_default_copy_alpha_hl_color);
/* NOT push_transparency_state */
/* NOT pop_transparency_state */
/* NOT put_image */
fill_dev_proc(dev, dev_spec_op, gx_default_dev_spec_op);
/* NOT copy_planes */
}
int
gx_default_open_device(gx_device * dev)
{
/* Initialize the separable status if not known. */
check_device_separable(dev);
return 0;
}
/* Get the initial matrix for a device with inverted Y. */
/* This includes essentially all printers and displays. */
/* Supports LeadingEdge, but no margins or viewports */
void
gx_default_get_initial_matrix(gx_device * dev, register gs_matrix * pmat)
{
/* NB this device has no paper margins */
floatp fs_res = dev->HWResolution[0] / 72.0;
floatp ss_res = dev->HWResolution[1] / 72.0;
switch(dev->LeadingEdge & LEADINGEDGE_MASK) {
case 1: /* 90 degrees */
pmat->xx = 0;
pmat->xy = -ss_res;
pmat->yx = -fs_res;
pmat->yy = 0;
pmat->tx = (float)dev->width;
pmat->ty = (float)dev->height;
break;
case 2: /* 180 degrees */
pmat->xx = -fs_res;
pmat->xy = 0;
pmat->yx = 0;
pmat->yy = ss_res;
pmat->tx = (float)dev->width;
pmat->ty = 0;
break;
case 3: /* 270 degrees */
pmat->xx = 0;
pmat->xy = ss_res;
pmat->yx = fs_res;
pmat->yy = 0;
pmat->tx = 0;
pmat->ty = 0;
break;
default:
case 0:
pmat->xx = fs_res;
pmat->xy = 0;
pmat->yx = 0;
pmat->yy = -ss_res;
pmat->tx = 0;
pmat->ty = (float)dev->height;
/****** tx/y is WRONG for devices with ******/
/****** arbitrary initial matrix ******/
break;
}
}
/* Get the initial matrix for a device with upright Y. */
/* This includes just a few printers and window systems. */
void
gx_upright_get_initial_matrix(gx_device * dev, register gs_matrix * pmat)
{
pmat->xx = dev->HWResolution[0] / 72.0; /* x_pixels_per_inch */
pmat->xy = 0;
pmat->yx = 0;
pmat->yy = dev->HWResolution[1] / 72.0; /* y_pixels_per_inch */
/****** tx/y is WRONG for devices with ******/
/****** arbitrary initial matrix ******/
pmat->tx = 0;
pmat->ty = 0;
}
int
gx_default_sync_output(gx_device * dev)
{
return 0;
}
int
gx_default_output_page(gx_device * dev, int num_copies, int flush)
{
int code = dev_proc(dev, sync_output)(dev);
if (code >= 0)
code = gx_finish_output_page(dev, num_copies, flush);
return code;
}
int
gx_default_close_device(gx_device * dev)
{
return 0;
}
const gx_xfont_procs *
gx_default_get_xfont_procs(gx_device * dev)
{
return NULL;
}
gx_device *
gx_default_get_xfont_device(gx_device * dev)
{
return dev;
}
gx_device *
gx_default_get_page_device(gx_device * dev)
{
return NULL;
}
gx_device *
gx_page_device_get_page_device(gx_device * dev)
{
return dev;
}
int
gx_default_get_alpha_bits(gx_device * dev, graphics_object_type type)
{
return (type == go_text ? dev->color_info.anti_alias.text_bits :
dev->color_info.anti_alias.graphics_bits);
}
int
gx_default_get_band(gx_device * dev, int y, int *band_start)
{
return 0;
}
void
gx_default_get_clipping_box(gx_device * dev, gs_fixed_rect * pbox)
{
pbox->p.x = 0;
pbox->p.y = 0;
pbox->q.x = int2fixed(dev->width);
pbox->q.y = int2fixed(dev->height);
}
void
gx_get_largest_clipping_box(gx_device * dev, gs_fixed_rect * pbox)
{
pbox->p.x = min_fixed;
pbox->p.y = min_fixed;
pbox->q.x = max_fixed;
pbox->q.y = max_fixed;
}
int
gx_no_create_compositor(gx_device * dev, gx_device ** pcdev,
const gs_composite_t * pcte,
gs_imager_state * pis, gs_memory_t * memory,
gx_device *cdev)
{
return_error(gs_error_unknownerror); /* not implemented */
}
int
gx_default_create_compositor(gx_device * dev, gx_device ** pcdev,
const gs_composite_t * pcte,
gs_imager_state * pis, gs_memory_t * memory,
gx_device *cdev)
{
return pcte->type->procs.create_default_compositor
(pcte, pcdev, dev, pis, memory);
}
int
gx_null_create_compositor(gx_device * dev, gx_device ** pcdev,
const gs_composite_t * pcte,
gs_imager_state * pis, gs_memory_t * memory,
gx_device *cdev)
{
*pcdev = dev;
return 0;
}
/*
* Default handler for creating a compositor device when writing the clist. */
int
gx_default_composite_clist_write_update(const gs_composite_t *pcte, gx_device * dev,
gx_device ** pcdev, gs_imager_state * pis, gs_memory_t * mem)
{
*pcdev = dev; /* Do nothing -> return the same device */
return 0;
}
/* Default handler for adjusting a compositor's CTM. */
int
gx_default_composite_adjust_ctm(gs_composite_t *pcte, int x0, int y0, gs_imager_state *pis)
{
return 0;
}
/*
* Default check for closing compositor.
*/
int
gx_default_composite_is_closing(const gs_composite_t *this, gs_composite_t **pcte, gx_device *dev)
{
return false;
}
/*
* Default check whether a next operation is friendly to the compositor.
*/
bool
gx_default_composite_is_friendly(const gs_composite_t *this, byte cmd0, byte cmd1)
{
return false;
}
/*
* Default handler for updating the clist device when reading a compositing
* device.
*/
int
gx_default_composite_clist_read_update(gs_composite_t *pxcte, gx_device * cdev,
gx_device * tdev, gs_imager_state * pis, gs_memory_t * mem)
{
return 0; /* Do nothing */
}
/*
* Default handler for get_cropping returns no cropping.
*/
int
gx_default_composite_get_cropping(const gs_composite_t *pxcte, int *ry, int *rheight,
int cropping_min, int cropping_max)
{
return 0; /* No cropping. */
}
int
gx_default_finish_copydevice(gx_device *dev, const gx_device *from_dev)
{
/* Only allow copying the prototype. */
return (from_dev->memory ? gs_note_error(gs_error_rangecheck) : 0);
}
int
gx_default_dev_spec_op(gx_device *pdev, int dev_spec_op, void *data, int size)
{
switch(dev_spec_op) {
case gxdso_pattern_can_accum:
case gxdso_pattern_start_accum:
case gxdso_pattern_finish_accum:
case gxdso_pattern_load:
case gxdso_pattern_shading_area:
case gxdso_pattern_is_cpath_accum:
case gxdso_pattern_handles_clip_path:
case gxdso_is_pdf14_device:
case gxdso_is_native_planar:
case gxdso_supports_devn:
case gxdso_supports_hlcolor:
return 0;
case gxdso_pattern_shfill_doesnt_need_path:
return (pdev->procs.fill_path == gx_default_fill_path);
case gxdso_is_std_cmyk_1bit:
return (pdev->procs.map_cmyk_color == cmyk_1bit_map_cmyk_color);
}
return gs_error_undefined;
}
int
gx_default_fill_rectangle_hl_color(gx_device *pdev,
const gs_fixed_rect *rect,
const gs_imager_state *pis, const gx_drawing_color *pdcolor,
const gx_clip_path *pcpath)
{
return gs_error_rangecheck;
}
int
gx_default_include_color_space(gx_device *pdev, gs_color_space *cspace,
const byte *res_name, int name_length)
{
return 0;
}
/*
* If a device wants to determine an equivalent color for its spot colors then
* it needs to implement this method. See comments at the start of
* src/gsequivc.c.
*/
int
gx_default_update_spot_equivalent_colors(gx_device *pdev, const gs_state * pgs)
{
return 0;
}
/*
* If a device wants to determine implement support for spot colors then
* it needs to implement this method.
*/
gs_devn_params *
gx_default_ret_devn_params(gx_device *pdev)
{
return NULL;
}
/* ---------------- Default per-instance procedures ---------------- */
int
gx_default_install(gx_device * dev, gs_state * pgs)
{
return 0;
}
int
gx_default_begin_page(gx_device * dev, gs_state * pgs)
{
return 0;
}
int
gx_default_end_page(gx_device * dev, int reason, gs_state * pgs)
{
return (reason != 2 ? 1 : 0);
}
void
gx_default_set_graphics_type_tag(gx_device *dev, gs_graphics_type_tag_t graphics_type_tag)
{
/* set the tag but carefully preserve GS_DEVICE_ENCODES_TAGS */
dev->graphics_type_tag = (dev->graphics_type_tag & GS_DEVICE_ENCODES_TAGS) | graphics_type_tag;
}
|