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 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
|
/* Copyright (C) 2001-2023 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., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
/* pxink.c */
/* PCL XL ink setting operators */
#include "math_.h"
#include "stdio_.h" /* for NULL */
#include "memory_.h"
#include "gdebug.h"
#include "gstypes.h"
#include "gsmemory.h"
#include "pxoper.h"
#include "pxstate.h"
#include "gxarith.h"
#include "gsstate.h"
#include "gxcspace.h" /* must precede gscolor2.h */
#include "gscolor2.h"
#include "gscoord.h"
#include "gsimage.h"
#include "gscie.h"
#include "gscrd.h"
#include "gspath.h"
#include "gxdevice.h"
#include "gxht.h"
#include "gxstate.h"
#include "plht.h"
#include "pxptable.h"
#include "gzstate.h"
#include "gxdevsop.h" /* Special ops, in this case pattern management */
#include "gxcolor2.h" /* Required for definition of gs_pattern1_instance_t for high level patterns */
#include "pxgstate.h" /* Prototype for px_high_level_pattern */
#include "gxpcolor.h" /* Prototype for gx_pattern_cache_add_dummy_entry */
#include "gxpath.h" /* Prototype for gx_clip_to_rectangle */
/*
* Contrary to the documentation, SetColorSpace apparently doesn't set the
* brush or pen to black. To produce this behavior, uncomment the
* following #define.
*/
#define SET_COLOR_SPACE_NO_SET_BLACK
/* ---------------- Utilities ---------------- */
/* ------ Halftones ------ */
/* Define a transfer function without gamma correction. */
static float
identity_transfer(double tint, const gx_transfer_map * ignore_map)
{
return tint;
}
/* Set the default halftone screen. */
static const byte order16x16[256] = {
#if 0
/*
* The following is a standard 16x16 ordered dither, except that
* the very last pass goes in the order (0,1,2,3) rather than
* (0,3,1,2). This leads to excessive cancellation when the source
* and paint halftones interact, but it's better than the standard
* order, which has inadequate cancellation.
*
* This matrix is generated by the following call:
* [ <00 88 08 80> <00 44 04 40> <00 22 02 20> <00 01 10 11> ]
* { } makedither
*/
0, 64, 32, 96, 8, 72, 40, 104, 2, 66, 34, 98, 10, 74, 42, 106,
128, 192, 160, 224, 136, 200, 168, 232, 130, 194, 162, 226, 138, 202, 170,
234,
48, 112, 16, 80, 56, 120, 24, 88, 50, 114, 18, 82, 58, 122, 26, 90,
176, 240, 144, 208, 184, 248, 152, 216, 178, 242, 146, 210, 186, 250, 154,
218,
12, 76, 44, 108, 4, 68, 36, 100, 14, 78, 46, 110, 6, 70, 38, 102,
140, 204, 172, 236, 132, 196, 164, 228, 142, 206, 174, 238, 134, 198, 166,
230,
60, 124, 28, 92, 52, 116, 20, 84, 62, 126, 30, 94, 54, 118, 22, 86,
188, 252, 156, 220, 180, 244, 148, 212, 190, 254, 158, 222, 182, 246, 150,
214,
3, 67, 35, 99, 11, 75, 43, 107, 1, 65, 33, 97, 9, 73, 41, 105,
131, 195, 163, 227, 139, 203, 171, 235, 129, 193, 161, 225, 137, 201, 169,
233,
51, 115, 19, 83, 59, 123, 27, 91, 49, 113, 17, 81, 57, 121, 25, 89,
179, 243, 147, 211, 187, 251, 155, 219, 177, 241, 145, 209, 185, 249, 153,
217,
15, 79, 47, 111, 7, 71, 39, 103, 13, 77, 45, 109, 5, 69, 37, 101,
143, 207, 175, 239, 135, 199, 167, 231, 141, 205, 173, 237, 133, 197, 165,
229,
63, 127, 31, 95, 55, 119, 23, 87, 61, 125, 29, 93, 53, 117, 21, 85,
191, 255, 159, 223, 183, 247, 151, 215, 189, 253, 157, 221, 181, 245, 149,
213
# define source_phase_x 1
# define source_phase_y 1
#else
/*
* The following is a 45 degree spot screen with the spots enumerated
* in a defined order. This matrix is generated by the following call:
/gamma_transfer {
dup dup 0 le exch 1 ge or not {
dup 0.17 lt
{ 3 mul }
{ dup 0.35 lt { 0.78 mul 0.38 add } { 0.53 mul 0.47 add } ifelse }
ifelse
} if
} def
[ [0 136 8 128 68 204 76 196]
[18 33 17 34 1 2 19 35 50 49 32 16 3 48 0 51
-15 -14 20 36 66 65 47 31 -13 64 15 52 -30 81 30 37]
] /gamma_transfer load makedither
*/
38, 11, 14, 32, 165, 105, 90, 171, 38, 12, 14, 33, 161, 101, 88, 167,
30, 6, 0, 16, 61, 225, 231, 125, 30, 6, 1, 17, 63, 222, 227, 122,
27, 3, 8, 19, 71, 242, 205, 110, 28, 4, 9, 20, 74, 246, 208, 106,
35, 24, 22, 40, 182, 46, 56, 144, 36, 25, 22, 41, 186, 48, 58, 148,
152, 91, 81, 174, 39, 12, 15, 34, 156, 95, 84, 178, 40, 13, 16, 34,
69, 212, 235, 129, 31, 7, 2, 18, 66, 216, 239, 133, 32, 8, 2, 18,
79, 254, 203, 114, 28, 4, 10, 20, 76, 250, 199, 118, 29, 5, 10, 21,
193, 44, 54, 142, 36, 26, 23, 42, 189, 43, 52, 139, 37, 26, 24, 42,
39, 12, 15, 33, 159, 99, 87, 169, 38, 11, 14, 33, 163, 103, 89, 172,
31, 7, 1, 17, 65, 220, 229, 123, 30, 6, 1, 17, 62, 223, 233, 127,
28, 4, 9, 20, 75, 248, 210, 108, 27, 3, 9, 19, 72, 244, 206, 112,
36, 25, 23, 41, 188, 49, 60, 150, 35, 25, 22, 41, 184, 47, 57, 146,
157, 97, 85, 180, 40, 13, 16, 35, 154, 93, 83, 176, 39, 13, 15, 34,
67, 218, 240, 135, 32, 8, 3, 19, 70, 214, 237, 131, 31, 7, 2, 18,
78, 252, 197, 120, 29, 5, 11, 21, 80, 255, 201, 116, 29, 5, 10, 21,
191, 43, 51, 137, 37, 27, 24, 43, 195, 44, 53, 140, 37, 26, 23, 42
# define source_phase_x 4
# define source_phase_y 0
#endif
};
/* Set the size for a default halftone screen. */
static void
px_set_default_screen_size(px_state_t * pxs, int method)
{
px_gstate_t *pxgs = pxs->pxgs;
pxgs->halftone.width = pxgs->halftone.height = 16;
}
/* If necessary, set the halftone in the graphics state. */
int
px_set_halftone(px_state_t * pxs)
{
px_gstate_t *pxgs = pxs->pxgs;
int code;
if (pxgs->halftone.set)
return 0;
if (pxgs->halftone.method != eDownloaded) {
gs_string thresh;
thresh.data = (byte *) order16x16;
thresh.size = 256;
code = pl_set_pcl_halftone(pxs->pgs,
/* set transfer */ identity_transfer,
/* width */ 16, /*height */ 16,
/* dither data */ thresh,
/* x phase */ (int)pxgs->halftone.origin.x,
/* y phase */
(int)pxgs->halftone.origin.y);
} else { /* downloaded */
int ht_width, ht_height;
switch (pxs->orientation) {
case ePortraitOrientation:
case eReversePortrait:
ht_width = pxgs->halftone.width;
ht_height = pxgs->halftone.height;
break;
case eLandscapeOrientation:
case eReverseLandscape:
ht_width = pxgs->halftone.height;
ht_height = pxgs->halftone.width;
break;
default:
return -1;
}
code = pl_set_pcl_halftone(pxs->pgs,
/* set transfer */ identity_transfer,
/* width */ ht_width, /*height */
ht_height,
/* dither data */
pxgs->halftone.thresholds,
/* x phase */ (int)pxgs->halftone.origin.x,
/* y phase */
(int)pxgs->halftone.origin.y);
if (code < 0)
gs_free_string(pxs->memory, pxgs->halftone.thresholds.data,
pxgs->halftone.thresholds.size,
"px_set_halftone(thresholds)");
else {
gs_free_string(pxs->memory, (byte *) pxgs->dither_matrix.data,
pxgs->dither_matrix.size,
"px_set_halftone(dither_matrix)");
pxgs->dither_matrix = pxgs->halftone.thresholds;
}
pxgs->halftone.thresholds.data = 0;
pxgs->halftone.thresholds.size = 0;
}
if (code < 0)
return code;
pxgs->halftone.set = true;
/* Cached patterns have already been halftoned, so clear the cache. */
px_purge_pattern_cache(pxs, eSessionPattern);
return 0;
}
/* ------ Patterns ------ */
/*
* The library caches patterns in their fully rendered form, i.e., after
* halftoning. In order to avoid seams or anomalies, we have to replicate
* the pattern so that its size is an exact multiple of the halftone size.
*/
static uint
ilcm(uint x, uint y)
{
return x * (y / igcd(x, y));
}
/* Render a pattern. */
static int
px_paint_pattern(const gs_client_color * pcc, gs_gstate * pgs)
{
const gs_client_pattern *ppat = gs_getpattern(pcc);
const px_pattern_t *pattern = (px_pattern_t *)gs_get_pattern_client_data(pcc);
const byte *dp = pattern->data;
gs_image_enum *penum = NULL;
gs_image_t image;
int code;
int num_components =
(pattern->params.indexed || pattern->params.color_space == eGray ?
1 : 3);
uint rep_width = pattern->params.width;
uint rep_height = pattern->params.height;
uint full_width = (uint) ppat->XStep;
uint full_height = (uint) ppat->YStep;
uint bits_per_row, bytes_per_row;
int x;
code =
px_image_color_space(&image, &pattern->params, &pattern->palette,
pgs);
if (code < 0)
return code;
bits_per_row = rep_width * image.BitsPerComponent * num_components;
bytes_per_row = (bits_per_row + 7) >> 3;
/*
* As noted above, in general, we have to replicate the original
* pattern to a multiple that avoids halftone seams. If the
* number of bits per row is a multiple of 8, we can do this with
* a single image; otherwise, we need one image per X replica.
* To simplify the code, we always use the (slightly) slower method.
*/
image.Width = rep_width;
image.Height = full_height;
image.CombineWithColor = true;
for (x = 0; x < full_width; x += rep_width) {
int y;
image.ImageMatrix.tx = (float)-x;
penum = gs_image_enum_alloc(gs_gstate_memory(pgs), "px_paint_pattern");
if (penum == NULL) {
code = gs_note_error(gs_error_VMerror);
break;
}
code = gs_image_init(penum, &image, 0, false, pgs);
if (code < 0)
break;
for (y = 0; y < full_height; ++y) {
const byte *row = dp + (y % rep_height) * bytes_per_row;
uint used; /* better named not_used */
code = gs_image_next(penum, row, bytes_per_row, &used);
if (code < 0)
break;
}
code = gs_image_cleanup_and_free_enum(penum, pgs);
penum = NULL;
if (code < 0)
break;
}
if (code < 0) {
(void)gs_image_cleanup_and_free_enum(penum, pgs);
penum = NULL;
}
return code;
}
int px_high_level_pattern(gs_gstate * pgs)
{
gs_matrix m;
gs_rect bbox;
gs_fixed_rect clip_box;
int code;
gx_device_color *pdc = gs_currentdevicecolor_inline(pgs);
const gs_client_pattern *ppat = gs_getpattern(&pdc->ccolor);
gs_color_space *pcs;
gs_pattern1_instance_t *pinst =
(gs_pattern1_instance_t *)gs_currentcolor(pgs)->pattern;
const px_pattern_t *pattern = (const px_pattern_t *)gs_get_pattern_client_data(gs_currentcolor(pgs));
code = gx_pattern_cache_add_dummy_entry(pgs, pinst,
pgs->device->color_info.depth);
if (code < 0)
return code;
code = gs_gsave(pgs);
if (code < 0)
return code;
dev_proc(pgs->device, get_initial_matrix)(pgs->device, &m);
gs_setmatrix(pgs, &m);
code = gs_bbox_transform(&ppat->BBox, &ctm_only(pgs), &bbox);
if (code < 0) {
gs_grestore(pgs);
return code;
}
clip_box.p.x = float2fixed(bbox.p.x);
clip_box.p.y = float2fixed(bbox.p.y);
clip_box.q.x = float2fixed(bbox.q.x);
clip_box.q.y = float2fixed(bbox.q.y);
code = gx_clip_to_rectangle(pgs, &clip_box);
if (code < 0) {
gs_grestore(pgs);
return code;
}
{
pattern_accum_param_s param;
param.pinst = (void *)pinst;
param.graphics_state = (void *)pgs;
param.pinst_id = pinst->id;
code = (*dev_proc(pgs->device, dev_spec_op))((gx_device *)pgs->device,
gxdso_pattern_start_accum, ¶m, sizeof(pattern_accum_param_s));
}
if (code < 0) {
gs_grestore(pgs);
return code;
}
/* set the color space, the 'current' space is pattern, we need to set the
* proper space for the image that we draw.
*/
switch (pattern->params.color_space) {
case eGray:
pcs = gs_cspace_new_DeviceGray(pgs->memory);
if (pcs == NULL) {
gs_grestore(pgs);
return_error(errorInsufficientMemory);
}
break;
case eRGB:
case eSRGB:
pcs = gs_cspace_new_DeviceRGB(pgs->memory);
if (pcs == NULL) {
gs_grestore(pgs);
return_error(errorInsufficientMemory);
}
break;
default:
gs_grestore(pgs);
return_error(errorIllegalAttributeValue);
}
gs_setcolorspace(pgs, pcs);
code = px_paint_pattern(&pdc->ccolor, pgs);
if (code < 0)
return code;
code = gs_grestore(pgs);
if (code < 0)
return code;
{
pattern_accum_param_s param;
param.pinst = (void *)pinst;
param.graphics_state = (void *)pgs;
param.pinst_id = pinst->id;
code = dev_proc(pgs->device, dev_spec_op)(pgs->device,
gxdso_pattern_finish_accum, ¶m, sizeof(pattern_accum_param_s));
}
return code;
}
static int px_remap_pattern(const gs_client_color *pcc, gs_gstate *pgs)
{
const gs_client_pattern *ppat = gs_getpattern(pcc);
int code = 0;
/* pgs->device is the newly created pattern accumulator, but we want to test the device
* that is 'behind' that, the actual output device, so we use the one from
* the saved graphics state.
*/
if (pgs->have_pattern_streams)
code = dev_proc(pcc->pattern->saved->device, dev_spec_op)(pcc->pattern->saved->device,
gxdso_pattern_can_accum, (void *)ppat, ppat->uid.id);
if (code == 1) {
/* Device handles high-level patterns, so return 'remap'.
* This closes the internal accumulator device, as we no longer need
* it, and the error trickles back up to the PDL client. The client
* must then take action to start the device's accumulator, draw the
* pattern, close the device's accumulator and generate a cache entry.
* See px_high_level_pattern above.
*/
return_error(gs_error_Remap_Color);
} else {
return px_paint_pattern(pcc, pgs);
}
}
/* Create the rendering of a pattern. */
static int
render_pattern(gs_client_color * pcc, const px_pattern_t * pattern,
const px_value_t * porigin, const px_value_t * pdsize,
px_state_t * pxs)
{
px_gstate_t *pxgs = pxs->pxgs;
uint rep_width = pattern->params.width;
uint rep_height = pattern->params.height;
uint full_width, full_height;
gs_gstate *pgs = pxs->pgs;
gs_client_pattern templat;
/*
* If halftoning may occur, replicate the pattern so we don't get
* halftone seams.
*/
{
gx_device *dev = gs_currentdevice(pgs);
if (!gx_device_must_halftone(dev)) { /* No halftoning. */
full_width = rep_width;
full_height = rep_height;
} else {
full_width = ilcm(rep_width, pxgs->halftone.width);
full_height = ilcm(rep_height, pxgs->halftone.height);
/*
* If the pattern would be enormous, don't replicate it.
* This is a HACK.
*/
if (full_width > 10000)
full_width = rep_width;
if (full_height > 10000)
full_height = rep_height;
}
}
/* Construct a Pattern for the library, and render it. */
gs_pattern1_init(&templat);
uid_set_UniqueID(&templat.uid, pattern->id);
templat.PaintType = 1;
templat.TilingType = 1;
templat.BBox.p.x = 0;
templat.BBox.p.y = 0;
templat.BBox.q.x = full_width;
templat.BBox.q.y = full_height;
templat.XStep = (float)full_width;
templat.YStep = (float)full_height;
templat.PaintProc = px_remap_pattern;
{
gs_matrix mat;
gs_point dsize;
int code;
if (porigin)
gs_make_translation(real_value(porigin, 0),
real_value(porigin, 1), &mat);
else
gs_make_identity(&mat);
if (pdsize) {
dsize.x = real_value(pdsize, 0);
dsize.y = real_value(pdsize, 1);
} else {
dsize.x = pattern->params.dest_width;
dsize.y = pattern->params.dest_height;
}
gs_matrix_scale(&mat, dsize.x / rep_width, dsize.y / rep_height,
&mat);
/*
* gs_makepattern will make a copy of the current gstate.
* We don't want this copy to contain any circular back pointers
* to px_pattern_ts: such pointers are unnecessary, because
* px_paint_pattern doesn't use the pen and brush (in fact,
* it doesn't even reference the px_gstate_t). We also want to
* reset the path and clip path. The easiest (although not by
* any means the most efficient) way to do this is to do a gsave,
* reset the necessary things, do the makepattern, and then do
* a grestore.
*/
code = gs_gsave(pgs);
if (code < 0)
return code;
{
px_gstate_t *pxgs = pxs->pxgs;
px_gstate_rc_adjust(pxgs, -1, pxgs->memory);
pxgs->brush.type = pxgs->pen.type = pxpNull;
gs_newpath(pgs);
px_initclip(pxs);
}
{
gs_color_space *pcs;
/* set the color space */
switch (pattern->params.color_space) {
case eGray:
pcs = gs_cspace_new_DeviceGray(pxgs->memory);
if (pcs == NULL)
return_error(errorInsufficientMemory);
break;
case eRGB:
case eSRGB:
pcs = gs_cspace_new_DeviceRGB(pxgs->memory);
if (pcs == NULL)
return_error(errorInsufficientMemory);
break;
default:
return_error(errorIllegalAttributeValue);
}
gs_setcolorspace(pgs, pcs);
}
code = gs_makepattern(pcc, &templat, &mat, pgs, NULL);
pcc->pattern->client_data = (void *)pattern;
gs_grestore(pgs);
return code;
}
}
/* ------ Brush/pen ------ */
/* Check parameters and execute SetBrushSource or SetPenSource: */
/* pxaRGBColor, pxaGrayLevel, pxaNullBrush/Pen, pxaPatternSelectID, */
/* pxaPatternOrigin, pxaNewDestinationSize */
static ulong
int_type_max(px_data_type_t type)
{
return
(type & pxd_ubyte ? 255 :
type & pxd_uint16 ? 65535 :
type & pxd_sint16 ? 32767 : type & pxd_uint32 ? (ulong) 0xffffffff :
/* type & pxd_sint32 */ 0x7fffffff);
}
static real
fraction_value(const px_value_t * pv, int i)
{
px_data_type_t type = pv->type;
real v;
if (type & pxd_real32)
return pv->value.ra[i];
v = (real) pv->value.ia[i];
return (v < 0 ? 0 : v / int_type_max(type));
}
/* we use an enumeration instead of index numbers improve readability in this
"very busy" routine */
typedef enum
{
aRGBColor = 0,
aGrayLevel = 1,
aPrimaryArray = 2,
aPrimaryDepth = 3,
aNullBrushPen = 4,
aPatternSelectID = 5,
aPatternOrigin = 6,
aNewDestinationSize = 7
} pxl_source_t;
/* given a paint type decide if a halftone is necessary */
static bool
px_needs_halftone(const gs_memory_t * mem, px_paint_t * ppt)
{
bool needs_halftone;
if (ppt->type == pxpPattern)
needs_halftone = true;
else if (ppt->type == pxpNull)
needs_halftone = false;
else if (ppt->type == pxpGray)
needs_halftone = ppt->value.gray != 0 && ppt->value.gray != 1;
else if (ppt->type == pxpRGB || ppt->type == pxpSRGB) { /* rgb or srgb */
int i;
needs_halftone = false;
for (i = 0; i < 3; i++) {
if (ppt->value.rgb[i] != 0 && ppt->value.rgb[i] != 1) {
needs_halftone = true;
break;
}
}
} else {
dmprintf(mem, "unknown paint type\n");
needs_halftone = true;
}
return needs_halftone;
}
static int
set_source(const px_args_t * par, px_state_t * pxs, px_paint_t * ppt)
{
px_gstate_t *pxgs = pxs->pxgs;
int code = 0;
/* pxaPatternSelectID */
if (par->pv[aPatternSelectID]) {
px_value_t key;
void *value;
px_pattern_t *pattern;
gs_client_color ccolor;
int code;
if (par->pv[aRGBColor] || par->pv[aGrayLevel]
|| par->pv[aNullBrushPen])
return_error(errorIllegalAttributeCombination);
key.type = pxd_array | pxd_ubyte;
key.value.array.data = (byte *) & par->pv[aPatternSelectID]->value.i;
key.value.array.size = sizeof(int32_t);
if (!(px_dict_find(&pxgs->temp_pattern_dict, &key, &value) ||
px_dict_find(&pxs->page_pattern_dict, &key, &value) ||
px_dict_find(&pxs->session_pattern_dict, &key, &value))
)
return_error(errorRasterPatternUndefined);
pattern = value;
px_set_halftone(pxs);
code = render_pattern(&ccolor, pattern, par->pv[aPatternOrigin],
par->pv[aNewDestinationSize], pxs);
/*
* We don't use px_paint_rc_adjust(... 1 ...) here, because
* gs_makepattern creates pattern instances with a reference
* count already set to 1.
*/
rc_increment(pattern);
if (code < 0)
return code;
px_paint_rc_adjust(ppt, -1, pxs->memory);
ppt->type = pxpPattern;
ppt->value.pattern.pattern = pattern;
ppt->value.pattern.color = ccolor;
/* not pxaPatternSelectID but we have a pattern origin or
newdestination size */
} else if (par->pv[aPatternOrigin] || par->pv[aNewDestinationSize]) {
return_error(errorIllegalAttributeCombination);
} else if (par->pv[aRGBColor]) {
const px_value_t *prgb = par->pv[aRGBColor];
int i;
if (par->pv[aGrayLevel] || par->pv[aNullBrushPen])
return_error(errorIllegalAttributeCombination);
if (pxgs->color_space != eRGB && pxgs->color_space != eSRGB)
return_error(errorColorSpaceMismatch);
px_paint_rc_adjust(ppt, -1, pxs->memory);
ppt->type = pxpRGB;
for (i = 0; i < 3; ++i)
if (prgb->type & pxd_any_real)
ppt->value.rgb[i] = real_elt(prgb, i);
else {
int32_t v = integer_elt(prgb, i);
ppt->value.rgb[i] =
(v < 0 ? 0 : (real) v / int_type_max(prgb->type));
}
} else if (par->pv[aGrayLevel]) { /* pxaGrayLevel */
if (par->pv[aNullBrushPen])
return_error(errorIllegalAttributeCombination);
if (pxgs->color_space != eGray)
return_error(errorColorSpaceMismatch);
px_paint_rc_adjust(ppt, -1, pxs->memory);
ppt->type = pxpGray;
ppt->value.gray = fraction_value(par->pv[aGrayLevel], 0);
} else if (par->pv[aNullBrushPen]) { /* pxaNullBrush/Pen */
px_paint_rc_adjust(ppt, -1, pxs->memory);
ppt->type = pxpNull;
} else if (par->pv[aPrimaryDepth] && par->pv[aPrimaryArray]) {
px_paint_rc_adjust(ppt, -1, pxs->memory);
if (pxgs->color_space == eRGB)
ppt->type = pxpRGB;
else if (pxgs->color_space == eGray)
ppt->type = pxpGray;
else if (pxgs->color_space == eSRGB)
ppt->type = pxpSRGB;
else {
dmprintf1(pxgs->memory, "Warning unknown color space %d\n",
pxgs->color_space);
ppt->type = pxpGray;
}
/* NB depth?? - for range checking */
if (ppt->type == pxpRGB || ppt->type == pxpSRGB) {
ppt->value.rgb[0] =
(float)par->pv[aPrimaryArray]->value.array.data[0] / 255.0;
ppt->value.rgb[1] =
(float)par->pv[aPrimaryArray]->value.array.data[1] / 255.0;
ppt->value.rgb[2] =
(float)par->pv[aPrimaryArray]->value.array.data[2] / 255.0;
} else
/* NB figure out reals and ints */
ppt->value.gray =
(float)par->pv[aPrimaryArray]->value.array.data[0] / 255.0;
} else
return_error(errorMissingAttribute);
/*
* Update the halftone to the most recently set one.
* This will do the wrong thing if we set the brush or pen source,
* set the halftone, and then set the other source, but we have
* no way to handle this properly with the current library.
*/
if (px_needs_halftone(pxs->memory, ppt))
code = px_set_halftone(pxs);
return code;
}
/* Set up a brush or pen for drawing. */
/* If it is a pattern, SetBrush/PenSource guaranteed that it is compatible */
/* with the current color space. */
int
px_set_paint(const px_paint_t * ppt, px_state_t * pxs)
{
gs_gstate *pgs = pxs->pgs;
px_paint_type_t type;
type = ppt->type;
switch (type) {
case pxpNull:
return gs_setnullcolor(pgs);
case pxpRGB:
return gs_setrgbcolor(pgs, ppt->value.rgb[0], ppt->value.rgb[1],
ppt->value.rgb[2]);
case pxpGray:
return gs_setgray(pgs, ppt->value.gray);
case pxpPattern:
return gs_setpattern(pgs, &ppt->value.pattern.color);
case pxpSRGB:
return gs_setrgbcolor(pgs,
ppt->value.rgb[0],
ppt->value.rgb[1],
ppt->value.rgb[2]);
default: /* can't happen */
return_error(errorIllegalAttributeValue);
}
}
/* ---------------- Operators ---------------- */
const byte apxSetBrushSource[] = {
0, pxaRGBColor, pxaGrayLevel, pxaPrimaryArray, pxaPrimaryDepth,
pxaNullBrush, pxaPatternSelectID,
pxaPatternOrigin, pxaNewDestinationSize, 0
};
int
pxSetBrushSource(px_args_t * par, px_state_t * pxs)
{
return set_source(par, pxs, &pxs->pxgs->brush);
}
const byte apxSetColorSpace[] = {
0, pxaColorSpace, pxaColorimetricColorSpace, pxaXYChromaticities,
pxaWhiteReferencePoint,
pxaCRGBMinMax, pxaGammaGain, pxaPaletteDepth, pxaPaletteData, 0
};
/* it appears the 4600 does not support CRGB define this to enable support */
/* #define SUPPORT_COLORIMETRIC */
int
pxSetColorSpace(px_args_t * par, px_state_t * pxs)
{
px_gstate_t *pxgs = pxs->pxgs;
pxeColorSpace_t cspace;
if (par->pv[0])
cspace = par->pv[0]->value.i;
else if (par->pv[1])
cspace = par->pv[1]->value.i;
else
return_error(errorIllegalAttributeValue);
if (par->pv[6] && par->pv[7]) {
int ncomp =
((cspace == eRGB || cspace == eSRGB) ? 3 : 1);
uint size = par->pv[7]->value.array.size;
if (!(size == ncomp << 1 || size == ncomp << 4 || size == ncomp << 8)
) {
/* The HP printers we've tested appear to truncate
this value and not produce an error on overflow */
if (size > ncomp << 8)
size = ncomp << 8;
else
return_error(errorIllegalAttributeValue);
}
/* The palette is in an array, but we want a string. */
{
if (pxgs->palette.data && !pxgs->palette_is_shared &&
pxgs->palette.size != size) {
gs_free_string(pxs->memory, (byte *) pxgs->palette.data,
pxgs->palette.size,
"pxSetColorSpace(old palette)");
pxgs->palette.data = 0;
pxgs->palette.size = 0;
}
if (pxgs->palette.data == 0 || pxgs->palette_is_shared) {
byte *pdata = gs_alloc_string(pxs->memory, size,
"pxSetColorSpace(palette)");
if (pdata == 0)
return_error(errorInsufficientMemory);
pxgs->palette.data = pdata;
pxgs->palette.size = size;
}
memcpy((void *)pxgs->palette.data, par->pv[7]->value.array.data,
size);
}
} else if (par->pv[6] || par->pv[7])
return_error(errorMissingAttribute);
else if (pxgs->palette.data) {
if (!pxgs->palette_is_shared)
gs_free_string(pxs->memory, (byte *) pxgs->palette.data,
pxgs->palette.size,
"pxSetColorSpace(old palette)");
pxgs->palette.data = 0;
pxgs->palette.size = 0;
}
pxgs->palette_is_shared = false;
pxgs->color_space = cspace;
#ifndef SET_COLOR_SPACE_NO_SET_BLACK
{
px_paint_rc_adjust(&pxgs->brush, -1, pxs->memory);
pxgs->brush.type = pxpGray;
pxgs->brush.value.gray = 0;
}
{
px_paint_rc_adjust(&pxgs->pen, -1, pxs->memory);
pxgs->pen.type = pxpGray;
pxgs->pen.value.gray = 0;
}
#endif
return 0;
}
const byte apxSetHalftoneMethod[] = {
0, pxaDitherOrigin, pxaDeviceMatrix, pxaDitherMatrixDataType,
pxaDitherMatrixSize, pxaDitherMatrixDepth, pxaAllObjectTypes,
pxaTextObjects, pxaVectorObjects, pxaRasterObjects, 0
};
int
pxSetHalftoneMethod(px_args_t * par, px_state_t * pxs)
{
gs_gstate *pgs = pxs->pgs;
px_gstate_t *pxgs = pxs->pxgs;
pxeDitherMatrix_t method;
if (par->pv[5] || par->pv[6] || par->pv[7] || par->pv[8])
/* Placeholder to support halftones per object type. */
;
if (par->pv[1]) { /* Internal halftone */
if (par->pv[2] || par->pv[3] || par->pv[4])
return_error(errorIllegalAttributeCombination);
method = par->pv[1]->value.i;
px_set_default_screen_size(pxs, method);
pxs->download_string.data = 0;
pxs->download_string.size = 0;
} else if (par->pv[2] && par->pv[3] && par->pv[4]) { /* Dither matrix */
uint width = par->pv[3]->value.ia[0];
uint source_width = (width + 3) & ~3;
uint height = par->pv[3]->value.ia[1];
uint size = width * height;
uint source_size = source_width * height;
if (par->source.position == 0) {
byte *data;
if (par->source.available == 0)
return pxNeedData;
data = gs_alloc_string(pxs->memory, size, "dither matrix");
if (data == 0)
return_error(errorInsufficientMemory);
pxs->download_string.data = data;
pxs->download_string.size = size;
}
while (par->source.position < source_size) {
uint source_x = par->source.position % source_width;
uint source_y = par->source.position / source_width;
uint used;
if (par->source.available == 0)
return pxNeedData;
if (source_x >= width) { /* Skip padding bytes at end of row. */
used = min(par->source.available, source_width - source_x);
} else { /* Read data. */
const byte *src = par->source.data;
byte *dest = pxs->download_string.data;
byte *pdata_min = dest;
byte *pdata_max = pdata_min + pxs->download_string.size;
uint i;
int skip;
used = min(par->source.available, width - source_x);
/*
* The documentation doesn't say this, but we have to
* rotate the dither matrix to match the orientation,
* remembering that we have a Y-inverted coordinate
* system. This is quite a nuisance!
*/
switch (pxs->orientation) {
case ePortraitOrientation:
dest += source_y * width + source_x;
skip = 1;
break;
case eLandscapeOrientation:
dest += (width - 1 - source_x) * height + source_y;
skip = -(int)height;
break;
case eReversePortrait:
dest += (height - 1 - source_y) * width +
width - 1 - source_x;
skip = -1;
break;
case eReverseLandscape:
dest += source_x * height + width - 1 - source_y;
skip = height;
break;
default:
return -1;
}
if ((dest < pdata_min) || (pdata_max < dest + ((used - 1) * (int64_t)skip)))
return_error(gs_error_rangecheck);
for (i = 0; i < used; ++i, ++src, dest += skip)
*dest = *src;
}
par->source.position += used;
par->source.available -= used;
par->source.data += used;
}
pxgs->halftone.width = width;
pxgs->halftone.height = height;
method = eDownloaded;
} else
return 0;
if (par->pv[0])
gs_transform(pgs, real_value(par->pv[0], 0),
real_value(par->pv[0], 1), &pxgs->halftone.origin);
else
gs_transform(pgs, 0.0, 0.0, &pxgs->halftone.origin);
pxgs->halftone.thresholds = pxs->download_string;
pxgs->halftone.method = method;
pxgs->halftone.set = false;
return 0;
}
const byte apxSetPenSource[] = {
0, pxaRGBColor, pxaGrayLevel, pxaPrimaryArray, pxaPrimaryDepth,
pxaNullPen, pxaPatternSelectID,
pxaPatternOrigin, pxaNewDestinationSize, 0
};
int
pxSetPenSource(px_args_t * par, px_state_t * pxs)
{
return set_source(par, pxs, &pxs->pxgs->pen);
}
const byte apxSetColorTreatment[] =
{ 0, pxaColorTreatment, pxaAllObjectTypes, pxaTextObjects,
pxaVectorObjects, pxaRasterObjects, 0 };
int
pxSetColorTreatment(px_args_t * par, px_state_t * pxs)
{
return 0;
}
const byte apxSetNeutralAxis[] = { 0, pxaAllObjectTypes, pxaTextObjects,
pxaVectorObjects, pxaRasterObjects, 0
};
int
pxSetNeutralAxis(px_args_t * par, px_state_t * pxs)
{
return 0;
}
const byte apxSetColorTrapping[] = { pxaAllObjectTypes, 0, 0 };
int
pxSetColorTrapping(px_args_t * par, px_state_t * pxs)
{
return 0;
}
const byte apxSetAdaptiveHalftoning[] =
{ 0, pxaAllObjectTypes, pxaTextObjects, pxaVectorObjects,
pxaRasterObjects, 0 };
int
pxSetAdaptiveHalftoning(px_args_t * par, px_state_t * pxs)
{
return 0;
}
|