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
|
/* Copyright (C) 2019-2024 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.
*/
/* Routines for dealing with devices */
#include "pdf_int.h"
#include "pdf_stack.h"
#include "pdf_device.h"
#include "gsdevice.h" /* For gs_setdevice_no_erase */
#include "gspaint.h" /* For gs_erasepage */
#include "gdevvec.h" /* for gs_device_vector */
#include "gxdevsop.h" /* For special ops : dev_param_req_t */
int pdfi_device_check_param(gx_device *dev, const char *param, gs_c_param_list *list)
{
dev_param_req_t request;
int code;
gs_c_param_list_write(list, dev->memory);
/* Stuff the data into a structure for passing to the spec_op */
request.Param = (char *)param;
request.list = list;
code = dev_proc(dev, dev_spec_op)(dev, gxdso_get_dev_param, &request, sizeof(dev_param_req_t));
if (code < 0) {
gs_c_param_list_release(list);
return code;
}
return 0;
}
/* Check value of boolean device parameter */
bool pdfi_device_check_param_bool(gx_device *dev, const char *param)
{
int code;
gs_c_param_list list;
int value;
code = pdfi_device_check_param(dev, param, &list);
if (code < 0)
return false;
gs_c_param_list_read(&list);
code = param_read_bool((gs_param_list *)&list,
param,
&value);
if (code < 0)
value = false;
gs_c_param_list_release(&list);
return (bool)value;
}
/* Set value of string device parameter */
int pdfi_device_set_param_string(gx_device *dev, const char *paramname, const char *value)
{
int code;
gs_c_param_list list;
gs_param_string paramstring;
paramstring.data = (byte *)value;
paramstring.size = strlen(value);
paramstring.persistent = 0;
gs_c_param_list_write(&list, dev->memory);
gs_param_list_set_persistent_keys((gs_param_list *) &list, false);
code = param_write_string((gs_param_list *)&list, paramname, ¶mstring);
if (code < 0) goto exit;
gs_c_param_list_read(&list);
code = gs_putdeviceparams(dev, (gs_param_list *)&list);
exit:
gs_c_param_list_release(&list);
return code;
}
/* Set value of boolean device parameter */
int pdfi_device_set_param_bool(gx_device *dev, const char *param, bool value)
{
int code;
gs_c_param_list list;
bool paramval = value;
gs_c_param_list_write(&list, dev->memory);
code = param_write_bool((gs_param_list *)&list, param, ¶mval);
if (code < 0) goto exit;
gs_c_param_list_read(&list);
code = gs_putdeviceparams(dev, (gs_param_list *)&list);
exit:
gs_c_param_list_release(&list);
return code;
}
int pdfi_device_set_param_float(gx_device *dev, const char *param, float value)
{
int code;
gs_c_param_list list;
float paramval = value;
gs_c_param_list_write(&list, dev->memory);
code = param_write_float((gs_param_list *)&list, param, ¶mval);
if (code < 0) goto exit;
gs_c_param_list_read(&list);
code = gs_putdeviceparams(dev, (gs_param_list *)&list);
exit:
gs_c_param_list_release(&list);
return code;
}
/* Checks whether a parameter exists for the device */
bool pdfi_device_check_param_exists(gx_device *dev, const char *param)
{
int code;
gs_c_param_list list;
code = pdfi_device_check_param(dev, param, &list);
if (code < 0)
return false;
gs_c_param_list_release(&list);
return true;
}
/* Config some device-related variables */
void pdfi_device_set_flags(pdf_context *ctx)
{
bool has_pdfmark;
bool has_ForOPDFRead;
gx_device *dev = ctx->pgs->device;
has_pdfmark = pdfi_device_check_param_exists(dev, "pdfmark");
has_ForOPDFRead = pdfi_device_check_param_bool(dev, "ForOPDFRead");
/* Cache these so they don't have to constantly be calculated */
ctx->device_state.writepdfmarks = has_pdfmark || ctx->args.dopdfmarks;
ctx->device_state.annotations_preserved = ctx->device_state.writepdfmarks && !has_ForOPDFRead;
/* PreserveTrMode is for pdfwrite device */
ctx->device_state.preserve_tr_mode = pdfi_device_check_param_bool(dev, "PreserveTrMode");
ctx->device_state.preserve_smask = pdfi_device_check_param_bool(dev, "PreserveSMask");
ctx->device_state.HighLevelDevice = pdfi_device_check_param_bool(dev, "HighLevelDevice");
ctx->device_state.ForOPDFRead = pdfi_device_check_param_bool(dev, "ForOPDFRead");
ctx->device_state.WantsPageLabels = pdfi_device_check_param_bool(dev, "WantsPageLabels");
ctx->device_state.WantsOptionalContent = pdfi_device_check_param_bool(dev, "WantsOptionalContent");
ctx->device_state.PassUserUnit = pdfi_device_check_param_bool(dev, "PassUserUnit");
/* See if it is a DeviceN (spot capable) */
ctx->device_state.spot_capable = dev_proc(dev, dev_spec_op)(dev, gxdso_supports_devn, NULL, 0);
ctx->device_state.ModifiesPageSize = pdfi_device_check_param_bool(dev, "ModifiesPageSize");
ctx->device_state.ModifiesPageOrder = pdfi_device_check_param_bool(dev, "ModifiesPageOrder");
/* If multi-page output, can't do certain pdfmarks */
if (ctx->device_state.writepdfmarks) {
if (gx_outputfile_is_separate_pages(((gx_device_vector *)dev)->fname, dev->memory) || ctx->device_state.ModifiesPageOrder) {
ctx->args.no_pdfmark_outlines = true;
ctx->args.no_pdfmark_dests = true;
}
}
#if DEBUG_DEVICE
dbgmprintf2(ctx->memory, "Device writepdfmarks=%s, annotations_preserved=%s\n",
ctx->writepdfmarks ? "TRUE" : "FALSE",
ctx->annotations_preserved ? "TRUE" : "FALSE");
#endif
}
/* Config the output device
* This will configure any special device parameters.
* Right now it just sets up some stuff for pdfwrite.
*/
int pdfi_device_misc_config(pdf_context *ctx)
{
bool has_pdfmark = false;
int code;
gx_device *dev = ctx->pgs->device;
if (ctx->args.first_page != 0 || ctx->args.last_page != 0) {
code = pdfi_device_set_param_bool(dev, "DisablePageHandler", true);
if (code < 0) goto exit;
}
/* I am using pdfmark to identify the pdfwrite device */
has_pdfmark = pdfi_device_check_param_bool(dev, "pdfmark");
/* (only handling pdfwrite for now) */
if (!has_pdfmark)
return 0;
/* TODO: I think the pdfwrite device should have these automatically set to true,
* but that doesn't seem to be the case now.
* See pdf_document_metadata()
*/
code = pdfi_device_set_param_string(dev, "AutoRotatePages", "PageByPage");
if (code < 0) goto exit;
exit:
return code;
}
|