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
|
/* 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.
*/
/* XPS interpreter - transparency support */
#include "ghostxps.h"
void
xps_bounds_in_user_space(xps_context_t *ctx, gs_rect *ubox)
{
gx_clip_path *clip_path;
gs_rect dbox;
int code;
code = gx_effective_clip_path(ctx->pgs, &clip_path);
if (code < 0)
gs_warn("gx_effective_clip_path failed");
dbox.p.x = fixed2float(clip_path->outer_box.p.x);
dbox.p.y = fixed2float(clip_path->outer_box.p.y);
dbox.q.x = fixed2float(clip_path->outer_box.q.x);
dbox.q.y = fixed2float(clip_path->outer_box.q.y);
code = gs_bbox_transform_inverse(&dbox, &ctm_only(ctx->pgs), ubox);
if (code < 0)
gs_warn("gs_bbox_transform_inverse failed");
}
/* This will get the proper bounds based upon the current path, clip path
and stroke width */
int xps_bounds_in_user_space_path_clip(xps_context_t *ctx, gs_rect *ubox,
bool use_path, bool is_stroke)
{
int code;
gs_rect bbox;
if (!use_path)
code = gx_curr_bbox(ctx->pgs, &bbox, NO_PATH);
else {
if (is_stroke)
code = gx_curr_bbox(ctx->pgs, &bbox, PATH_STROKE);
else
code = gx_curr_bbox(ctx->pgs, &bbox, PATH_FILL);
}
if (code < 0)
return code;
return gs_bbox_transform_inverse(&bbox, &ctm_only(ctx->pgs), ubox);
}
int
xps_begin_opacity(xps_context_t *ctx, char *base_uri, xps_resource_t *dict,
char *opacity_att, xps_item_t *opacity_mask_tag, bool use_path,
bool is_stroke)
{
gs_transparency_group_params_t tgp;
gs_transparency_mask_params_t tmp;
gs_rect bbox;
float opacity;
int save;
int code;
if (!opacity_att && !opacity_mask_tag)
return 0;
opacity = 1.0;
if (opacity_att)
opacity = atof(opacity_att);
gs_setblendmode(ctx->pgs, BLEND_MODE_Normal);
gs_setfillconstantalpha(ctx->pgs, 1.0);
gs_setstrokeconstantalpha(ctx->pgs, 1.0);
code = xps_bounds_in_user_space_path_clip(ctx, &bbox, use_path, is_stroke);
if (code < 0)
return code;
if (opacity_mask_tag)
{
gs_trans_mask_params_init(&tmp, TRANSPARENCY_MASK_Luminosity);
gs_gsave(ctx->pgs);
gs_setcolorspace(ctx->pgs, ctx->gray_lin);
tmp.ColorSpace = ctx->gray_lin;
gs_begin_transparency_mask(ctx->pgs, &tmp, &bbox, 0);
/* Create a path if we dont have one that defines the opacity.
For example if we had a canvas opacity then we need to make
the path for that opacity. Otherwise we use the opacity path
that was defined and its intesection with the clipping path. */
if (!use_path)
{
gs_moveto(ctx->pgs, bbox.p.x, bbox.p.y);
gs_lineto(ctx->pgs, bbox.p.x, bbox.q.y);
gs_lineto(ctx->pgs, bbox.q.x, bbox.q.y);
gs_lineto(ctx->pgs, bbox.q.x, bbox.p.y);
gs_closepath(ctx->pgs);
}
/* opacity-only mode: use alpha value as gray color to create luminosity mask */
save = ctx->opacity_only;
ctx->opacity_only = 1;
code = xps_parse_brush(ctx, base_uri, dict, opacity_mask_tag);
if (code)
{
//gs_grestore(ctx->pgs);
gs_end_transparency_mask(ctx->pgs, TRANSPARENCY_CHANNEL_Opacity);
ctx->opacity_only = save;
return gs_rethrow(code, "cannot parse opacity mask brush");
}
gs_end_transparency_mask(ctx->pgs, TRANSPARENCY_CHANNEL_Opacity);
gs_grestore(ctx->pgs);
gs_push_transparency_state(ctx->pgs);
ctx->opacity_only = save;
}
gs_setfillconstantalpha(ctx->pgs, opacity);
gs_setstrokeconstantalpha(ctx->pgs, opacity);
gs_trans_group_params_init(&tgp, opacity);
gs_begin_transparency_group(ctx->pgs, &tgp, &bbox, PDF14_BEGIN_TRANS_GROUP);
gs_setfillconstantalpha(ctx->pgs, 1.0);
gs_setstrokeconstantalpha(ctx->pgs, 1.0);
return 0;
}
void
xps_end_opacity(xps_context_t *ctx, char *base_uri, xps_resource_t *dict,
char *opacity_att, xps_item_t *opacity_mask_tag)
{
if (!opacity_att && !opacity_mask_tag)
return;
gs_end_transparency_group(ctx->pgs);
/* Need to remove the soft mask from the graphic state. Otherwise
we may end up using it in subsequent drawings. Note that there
is not a push of the state made since there is already a soft
mask present from gs_end_transparency_mask. In this case,
we are removing the mask with this forced pop. */
if (opacity_mask_tag != NULL)
gs_pop_transparency_state(ctx->pgs, true);
}
|