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
|
/* 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.
*/
/* transparency processing for PDF-writing driver */
#include "gx.h"
#include "string_.h"
#include "gserrors.h"
#include "gstrans.h"
#include "gscolor2.h"
#include "gzstate.h"
#include "gdevpdfx.h"
#include "gdevpdfg.h"
#include "gdevpdfo.h"
#include "gsccolor.h"
static int
pdf_make_soft_mask_dict(gx_device_pdf * pdev, const gs_pdf14trans_params_t * pparams)
{
pdf_resource_t *pres_soft_mask_dict = 0;
cos_dict_t *soft_mask_dict;
int code;
/* Fixme : merge redundant objects. */
code = pdf_alloc_resource(pdev, resourceSoftMaskDict, gs_no_id, &pres_soft_mask_dict, -1);
if (code < 0)
return code;
cos_become(pres_soft_mask_dict->object, cos_type_dict);
pdev->pres_soft_mask_dict = pres_soft_mask_dict;
soft_mask_dict = (cos_dict_t *)pres_soft_mask_dict->object;
code = cos_dict_put_c_key_string(soft_mask_dict, "/S",
pparams->subtype == TRANSPARENCY_MASK_Alpha ? (byte *)"/Alpha" : (byte *)"/Luminosity",
pparams->subtype == TRANSPARENCY_MASK_Alpha ? 6 : 11);
if (code < 0)
return code;
if (pparams->Background_components) {
cos_array_t *Background;
Background = cos_array_from_floats(pdev, pparams->Background,
pparams->Background_components, "pdf_write_soft_mask_dict");
if (Background == NULL)
return_error(gs_error_VMerror);
code = cos_dict_put_c_key_object(soft_mask_dict, "/BC", (cos_object_t *)Background);
if (code < 0)
return code;
}
if (pparams->transfer_function != NULL) {
long id;
char buf[20];
code = pdf_write_function(pdev, pparams->transfer_function, &id);
if (code < 0)
return code;
sprintf(buf, " %ld 0 R", id);
code = cos_dict_put_c_key_string(soft_mask_dict, "/TR", (const byte *)buf, strlen(buf));
if (code < 0)
return code;
}
return 0;
}
static int
pdf_make_group_dict(gx_device_pdf * pdev, const gs_pdf14trans_params_t * pparams,
const gs_imager_state * pis, cos_dict_t **pdict)
{
pdf_resource_t *pres_group;
cos_dict_t *group_dict;
int code;
const gs_state *gstate = gx_hld_get_gstate_ptr(pis);
cos_value_t cs_value;
code = pdf_alloc_resource(pdev, resourceGroup, gs_no_id, &pres_group, -1);
if (code < 0)
return code;
cos_become(pres_group->object, cos_type_dict);
group_dict = (cos_dict_t *)pres_group->object;
code = cos_dict_put_c_key_string(group_dict, "/Type", (const byte *)"/Group", 6);
if (code < 0)
return code;
code = cos_dict_put_c_key_string(group_dict, "/S", (const byte *)"/Transparency", 13);
if (code < 0)
return code;
if (pparams->Isolated) {
code = cos_dict_put_c_key_bool(group_dict, "/I", true);
if (code < 0)
return code;
}
if (pparams->Knockout) {
code = cos_dict_put_c_key_bool(group_dict, "/K", true);
if (code < 0)
return code;
}
/* Note that we should not add in the graphic state
color space for the group color if there was not
a group color specified.
In this case, the parent group is inherited from
the previous group or the device color space */
if (gstate != NULL && pparams->group_color != UNKNOWN) {
const gs_color_space *cs = gs_currentcolorspace_inline(gstate);
code = pdf_color_space_named(pdev, &cs_value, NULL, cs,
&pdf_color_space_names, false, NULL, 0);
if (code < 0)
return code;
code = cos_dict_put_c_key(group_dict, "/CS", &cs_value);
if (code < 0)
return code;
}
group_dict = NULL; /* The next line invalidates it. */
code = pdf_substitute_resource(pdev, &pres_group, resourceGroup, NULL, false);
if (code < 0)
return code;
pres_group->where_used |= pdev->used_mask;
*pdict = (cos_dict_t *)pres_group->object;
return 0;
}
static int
pdf_make_form_dict(gx_device_pdf * pdev, const gs_pdf14trans_params_t * pparams,
const gs_imager_state * pis,
const cos_dict_t *group_dict, cos_dict_t *form_dict)
{
cos_array_t *bbox_array;
float bbox[4];
gs_rect bbox_rect;
int code;
code = gs_bbox_transform(&pparams->bbox, &ctm_only(pis), &bbox_rect);
if (code < 0)
return code;
bbox[0] = bbox_rect.p.x;
bbox[1] = bbox_rect.p.y;
bbox[2] = bbox_rect.q.x;
bbox[3] = bbox_rect.q.y;
code = cos_dict_put_c_key_string(form_dict, "/Type", (const byte *)"/XObject", 8);
if (code < 0)
return code;
code = cos_dict_put_c_key_string(form_dict, "/Subtype", (const byte *)"/Form", 5);
if (code < 0)
return code;
code = cos_dict_put_c_key_int(form_dict, "/FormType", 1);
if (code < 0)
return code;
code = cos_dict_put_c_key_string(form_dict, "/Matrix", (const byte *)"[1 0 0 1 0 0]", 13);
if (code < 0)
return code;
bbox_array = cos_array_from_floats(pdev, bbox, 4, "pdf_begin_transparency_group");
if (bbox_array == NULL)
return_error(gs_error_VMerror);
code = cos_dict_put_c_key_object(form_dict, "/BBox", (cos_object_t *)bbox_array);
if (code < 0)
return code;
return cos_dict_put_c_key_object(form_dict, "/Group", (cos_object_t *)group_dict);
}
static int
pdf_begin_transparency_group(gs_imager_state * pis, gx_device_pdf * pdev,
const gs_pdf14trans_params_t * pparams)
{
cos_dict_t *group_dict;
bool in_page = is_in_page(pdev);
const gs_state *gstate = gx_hld_get_gstate_ptr(pis);
int code;
if (gstate == NULL)
return_error(gs_error_unregistered); /* Must not happen. */
code = pdf_make_group_dict(pdev, pparams, pis, &group_dict);
if (code < 0)
return code;
code = pdf_open_page(pdev, PDF_IN_STREAM);
if (code < 0)
return code;
if (pdf_must_put_clip_path(pdev, gstate->clip_path)) {
code = pdf_put_clip_path(pdev, gstate->clip_path);
if (code < 0)
return code;
}
if (!in_page)
pdev->pages[pdev->next_page].group_id = group_dict->id;
else if (pparams->image_with_SMask) {
/* An internal group for the image implementation.
See doimagesmask in gs/lib/pdf_draw.ps .
Just set a flag for skipping pdf_end_transparency_group. */
pdev->image_with_SMask |= 1 << ++pdev->FormDepth;
} else {
pdf_resource_t *pres, *pres_gstate = NULL;
code = pdf_prepare_drawing(pdev, pis, &pres_gstate);
if (code < 0)
return code;
code = pdf_end_gstate(pdev, pres_gstate);
if (code < 0)
return code;
code = pdf_enter_substream(pdev, resourceXObject,
gs_no_id, &pres, false, pdev->params.CompressPages);
if (code < 0)
return code;
pdev->FormDepth++;
return pdf_make_form_dict(pdev, pparams, pis, group_dict, (cos_dict_t *)pres->object);
}
return 0;
}
static int
pdf_end_transparency_group(gs_imager_state * pis, gx_device_pdf * pdev)
{
int bottom = (pdev->ResourcesBeforeUsage ? 1 : 0);
if (!is_in_page(pdev))
return 0; /* corresponds to check in pdf_begin_transparency_group */
if (pdev->image_with_SMask & (1 << pdev->FormDepth)) {
/* An internal group for the image implementation.
See pdf_begin_transparency_group. */
pdev->image_with_SMask &= ~(1 << pdev->FormDepth--);
return 0;
} else if (pdev->sbstack_depth == bottom) {
/* We're closing the page group. */
if (pdev->pages[pdev->next_page].group_id == 0)
return_error(gs_error_unregistered); /* Must not happen. */
return 0;
} else {
pdf_resource_t *pres = pdev->accumulating_substream_resource;
int code;
uint ignore;
pdev->FormDepth--;
code = pdf_exit_substream(pdev);
if (code < 0)
return code;
code = pdf_substitute_resource(pdev, &pres, resourceXObject, NULL, false);
if (code < 0)
return code;
/* We need to update the 'where_used' field, in case we substituted a resource */
pres->where_used |= pdev->used_mask;
sputc(pdev->strm,'/');
sputs(pdev->strm, (const byte *)pres->rname, strlen(pres->rname), &ignore);
sputs(pdev->strm, (const byte *)" Do\n", 4, &ignore);
return 0;
}
}
static int
pdf_begin_transparency_mask(gs_imager_state * pis, gx_device_pdf * pdev,
const gs_pdf14trans_params_t * pparams)
{
if (pparams->mask_is_image) {
/* HACK :
The control comes here when
the PDF interpreter will make the PS interpreter
to interprete the mask for filling the transparency buffer
with an SMask image.
Since we handle Type 3 images as a high level objects,
we don't install the transparency buffer here
and need to skip the image enumeration for the SMask.
However we have no right method for skipping
an image enumeration due to possible side effect
of the image data proc in Postscript language.
Therefore we do enumerate the image mask and accumulate
it as a PDF stream, but don't create a reference to it.
Later it will be enumerated once again as a part of SMask-ed image,
and the pdfwrite image handler will recognize duplicated images
and won't create the second stream for same image.
We could make a special workaround for
skipping mask images either in the graphics library or
in the PS code of the PDF interpreter,
but we don't want to complicate things now.
The performance leak for the second enumeration
shouldn't be harmful.
So now just set a flag for pdf_end_and_do_image.
*/
pdev->image_mask_skip = true;
return 0;
} else {
int code;
code = pdf_make_soft_mask_dict(pdev, pparams);
if (code < 0)
return code;
code = pdf_open_page(pdev, PDF_IN_STREAM);
if (code < 0)
return code;
return pdf_begin_transparency_group(pis, pdev, pparams);
}
}
static int
pdf_end_transparency_mask(gs_imager_state * pis, gx_device_pdf * pdev,
const gs_pdf14trans_params_t * pparams)
{
if (pdev->image_mask_skip)
pdev->image_mask_skip = false;
else {
pdf_resource_t *pres = pdev->accumulating_substream_resource;
int code;
char buf[20];
code = pdf_exit_substream(pdev);
if (code < 0)
return code;
code = pdf_substitute_resource(pdev, &pres, resourceXObject, NULL, false);
if (code < 0)
return 0;
/* We need to update the 'where_used' field, in case we substituted a resource */
pres->where_used |= pdev->used_mask;
sprintf(buf, "%ld 0 R", pdf_resource_id(pres));
code = cos_dict_put_c_key_string((cos_dict_t *)pdev->pres_soft_mask_dict->object,
"/G", (const byte *)buf, strlen(buf));
if (code < 0)
return code;
code = pdf_substitute_resource(pdev, &pdev->pres_soft_mask_dict,
resourceSoftMaskDict, NULL, false);
if (code < 0)
return code;
pdev->pres_soft_mask_dict->where_used |= pdev->used_mask;
pis->soft_mask_id = pdev->pres_soft_mask_dict->object->id;
pdev->pres_soft_mask_dict = NULL;
/* We called pdf_start_trnasparency_group (see pdf_begin_transparency_mask
* above) but we don't call pdf_end_transparency_group, so we must reduce
* the FormDepth ourselves.
*/
pdev->FormDepth--;
}
return 0;
}
static int
pdf_set_blend_params(gs_imager_state * pis, gx_device_pdf * dev,
const gs_pdf14trans_params_t * pparams)
{
return 0;
}
int
gdev_pdf_create_compositor(gx_device *dev,
gx_device **pcdev, const gs_composite_t *pct,
gs_imager_state *pis, gs_memory_t *memory, gx_device *cdev)
{
gx_device_pdf *pdev = (gx_device_pdf *)dev;
if (pdev->HaveTransparency && pdev->CompatibilityLevel >= 1.4 &&
pct->type->comp_id == GX_COMPOSITOR_PDF14_TRANS &&
!pdev->PDFA) {
gs_pdf14trans_t *pcte = (gs_pdf14trans_t *)pct;
gs_pdf14trans_params_t *params = &pcte->params;
*pcdev = dev;
switch(params->pdf14_op) {
case PDF14_PUSH_DEVICE:
return 0;
case PDF14_POP_DEVICE:
return 0;
case PDF14_BEGIN_TRANS_GROUP:
return pdf_begin_transparency_group(pis, pdev, params);
case PDF14_END_TRANS_GROUP:
return pdf_end_transparency_group(pis, pdev);
case PDF14_BEGIN_TRANS_MASK:
return pdf_begin_transparency_mask(pis, pdev, params);
case PDF14_END_TRANS_MASK:
return pdf_end_transparency_mask(pis, pdev, params);
case PDF14_SET_BLEND_PARAMS:
return pdf_set_blend_params(pis, pdev, params);
case PDF14_PUSH_TRANS_STATE:
return 0;
case PDF14_POP_TRANS_STATE:
return 0;
case PDF14_PUSH_SMASK_COLOR:
return 0;
case PDF14_POP_SMASK_COLOR:
return 0;
default :
return_error(gs_error_unregistered); /* Must not happen. */
}
return 0;
}
return psdf_create_compositor(dev, pcdev, pct, pis, memory, cdev);
}
/* We're not sure why the folllowing device methods are never called.
Stub them for a while. */
int
gdev_pdf_begin_transparency_group(gx_device *dev,
const gs_transparency_group_params_t *ptgp,
const gs_rect *pbbox,
gs_imager_state *pis,
gs_transparency_state_t **ppts,
gs_memory_t *mem)
{
return 0;
}
int
gdev_pdf_end_transparency_group(gx_device *dev,
gs_imager_state *pis,
gs_transparency_state_t **ppts)
{
return 0;
}
int
gdev_pdf_begin_transparency_mask(gx_device *dev,
const gx_transparency_mask_params_t *ptmp,
const gs_rect *pbbox,
gs_imager_state *pis,
gs_transparency_state_t **ppts,
gs_memory_t *mem)
{
return 0;
}
int
gdev_pdf_end_transparency_mask(gx_device *dev,
gs_imager_state *pis,
gs_transparency_mask_t **pptm)
{
return 0;
}
int
gdev_pdf_discard_transparency_layer(gx_device *dev,
gs_transparency_state_t **ppts)
{
return 0;
}
|