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
|
/* Copyright (C) 2001-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.
*/
/* PostScript image output device */
#include "gdevprn.h"
#include "gdevpsu.h"
#include "stream.h"
#include "strimpl.h"
#include "sa85x.h"
#include "srlx.h"
/*
* There are two drivers in this file, both of which produce PostScript
* output consisting of a single bitmap per page. The psmono/psgray
* driver produces monochrome Level 1 images using home-grown run length
* compression; the psrgb driver produces planar RGB Level 2 images
* using the RunLengthEncode filter.
*/
/* ---------------- Shared code ---------------- */
/* Define the device parameters. */
#ifndef X_DPI
# define X_DPI 300
#endif
#ifndef Y_DPI
# define Y_DPI 300
#endif
/* Write the file (if necessary) and page headers. */
static void
ps_image_write_headers(gp_file *f, gx_device_printer *pdev,
const char *const setup[],
gx_device_pswrite_common_t *pdpc)
{
if (gdev_prn_file_is_new(pdev)) {
gs_rect bbox;
bbox.p.x = 0;
bbox.p.y = 0;
bbox.q.x = pdev->width / pdev->HWResolution[0] * 72.0;
bbox.q.y = pdev->height / pdev->HWResolution[1] * 72.0;
psw_begin_file_header(f, (gx_device *)pdev, &bbox, pdpc, false);
psw_print_lines(f, setup);
psw_end_file_header(f);
}
{
byte buf[100]; /* arbitrary */
stream s;
s_init(&s, pdev->memory);
swrite_file(&s, f, buf, sizeof(buf));
psw_write_page_header(&s, (gx_device *)pdev, pdpc, true, pdev->PageCount + 1, 10);
sflush(&s);
}
}
/* ---------------- Level 1 monochrome driver ---------------- */
/*
* This driver produces a bitmap in the form of a PostScript file that can
* be fed to any PostScript printer. It uses a run-length compression
* method that executes quickly (unlike some produced by PostScript
* drivers!).
*
* There are two devices here, one for 1-bit black-and-white and one
* for 8-bit gray. In fact, the same code could also handle 2- and
* 4-bit gray output.
*/
/* The device descriptor */
static const char *const psmono_setup[] = {
/* Initialize the strings for filling runs. */
"/.ImageFills [ 0 1 255 {",
" 256 string dup 0 1 7 { 3 index put dup } for { 8 16 32 64 128 } {",
" 2 copy 0 exch getinterval putinterval dup",
" } forall pop exch pop",
"} bind for ] def",
/* Initialize the procedure table for input dispatching. */
"/.ImageProcs [",
/* Stack: <buffer> <file> <xdigits> <previous> <byte> */
" 32 { { pop .ImageItem } } repeat",
" 16 { {", /* 0x20-0x2f: (N-0x20) data bytes follow */
" 32 sub 3 -1 roll add 3 index exch 0 exch getinterval 2 index exch",
" readhexstring pop exch pop 0 exch dup",
" } bind } repeat",
" 16 { {", /* 0x30-0x3f: prefix hex digit (N-0x30) to next count */
" 48 sub 3 -1 roll add 4 bitshift exch .ImageItem",
" } bind } repeat",
" 32 { {", /* 0x40-0x5f: repeat last data byte (N-0x40) times */
" 64 sub 3 -1 roll add .ImageFills 2 index dup length 1 sub get get",
" exch 0 exch getinterval 0 3 1 roll",
" } bind } repeat",
" 160 { { pop .ImageItem } } repeat",
"] readonly def",
/* Read one item from a compressed image. */
/* Stack contents: <buffer> <file> <xdigits> <previous> */
"/.ImageItem {",
" 2 index read pop dup .ImageProcs exch get exec",
"} bind def",
/* Read and print an entire compressed image. */
"/.ImageRead {" /* <width> <height> <bpc> .ImageRead - */
" gsave [",
/* Stack: width height bpc -mark- */
" 1 0 0 -1 0 7 index",
/* Stack: width height bpc -mark- 1 0 0 -1 0 height */
" ] { .ImageItem }",
/* Stack: width height bpc <matrix> <proc> */
" 4 index 3 index mul 7 add 8 idiv string currentfile 0 ()",
/* Stack: width height bpc <matrix> <proc> <buffer> <file> 0 () */
" 9 4 roll",
/* Stack: <buffer> <file> 0 () width height bpc <matrix> <proc> */
" image pop pop pop pop grestore",
"} def",
0
};
static const gx_device_pswrite_common_t psmono_values =
PSWRITE_COMMON_VALUES(1, 0 /*false*/, 1);
#define data_run_code 0x20
#define xdigit_code 0x30
#define max_data_per_line 35
#define repeat_run_code 0x40
#define max_repeat_run_code 31
#define max_repeat_run 255
/* Send the page to the printer. */
static void write_data_run(const byte *, int, gp_file *, byte);
static int
psmono_print_page(gx_device_printer * pdev, gp_file * prn_stream)
{
int line_size = gdev_mem_bytes_per_scan_line((gx_device *) pdev);
int lnum, code = 0;
byte *line = gs_alloc_bytes(pdev->memory, line_size, "psmono_print_page");
byte invert = (pdev->color_info.depth == 1 ? 0xff : 0);
gx_device_pswrite_common_t pswrite_common;
if (line == 0)
return_error(gs_error_VMerror);
pswrite_common = psmono_values;
/* If this is the first page of the file, */
/* write the setup code. */
ps_image_write_headers(prn_stream, pdev, psmono_setup, &pswrite_common);
/* Write the .ImageRead command. */
fprintf(prn_stream,
"%d %d %d .ImageRead\n",
pdev->width, pdev->height, pdev->color_info.depth);
/* Compress each scan line in turn. */
for (lnum = 0; lnum < pdev->height; lnum++) {
const byte *p;
int left = line_size;
byte *data;
code = gdev_prn_get_bits(pdev, lnum, line, &data);
if (code < 0)
goto xit;
p = data;
/* Loop invariant: p + left = data + line_size. */
#define min_repeat_run 10
while (left >= min_repeat_run) { /* Detect a maximal run of non-repeated data. */
const byte *p1 = p;
int left1 = left;
byte b;
int count, count_left;
while (left1 >= min_repeat_run &&
((b = *p1) != p1[1] ||
b != p1[2] || b != p1[3] || b != p1[4] ||
b != p1[5] || b != p1[6] || b != p1[7] ||
b != p1[8] || b != p1[9])
)
++p1, --left1;
if (left1 < min_repeat_run)
break; /* no repeated data left */
write_data_run(p, (int)(p1 - p + 1), prn_stream,
invert);
/* Detect a maximal run of repeated data. */
p = ++p1 + (min_repeat_run - 1);
left = --left1 - (min_repeat_run - 1);
while (left > 0 && *p == b)
++p, --left;
for (count = p - p1; count > 0;
count -= count_left
) {
count_left = min(count, max_repeat_run);
if (count_left > max_repeat_run_code)
fputc(xdigit_code + (count_left >> 4),
prn_stream),
fputc(repeat_run_code + (count_left & 0xf),
prn_stream);
else
putc(repeat_run_code + count_left,
prn_stream);
}
if (ferror(prn_stream))
return_error(gs_error_ioerror);
}
/* Write the remaining data, if any. */
write_data_run(p, left, prn_stream, invert);
}
/* Clean up and return. */
fputs("\n", prn_stream);
psw_write_page_trailer(prn_stream, 1, true);
xit:
gs_free_object(pdev->memory, line, "psmono_print_page");
if (ferror(prn_stream))
return_error(gs_error_ioerror);
return code;
}
/* Close the file. */
static int
psmono_close(gx_device *dev)
{
int code = psw_end_file(((gx_device_printer *)dev)->file, dev,
&psmono_values, NULL, dev->PageCount);
if (code < 0)
return code;
return gdev_prn_close(dev);
}
/* Write a run of data on the file. */
static void
write_data_run(const byte * data, int count, gp_file * f, byte invert)
{
const byte *p = data;
const char *const hex_digits = "0123456789abcdef";
int left = count;
char line[sizeof(count) * 2 + max_data_per_line * 2 + 3];
char *q = line;
/* Write the count. */
if (!count)
return;
{
int shift = sizeof(count) * 8;
while ((shift -= 4) > 0 && (count >> shift) == 0);
for (; shift > 0; shift -= 4)
*q++ = xdigit_code + ((count >> shift) & 0xf);
*q++ = data_run_code + (count & 0xf);
}
/* Write the data. */
while (left > 0) {
register int wcount = min(left, max_data_per_line);
left -= wcount;
for (; wcount > 0; ++p, --wcount) {
byte b = *p ^ invert;
*q++ = hex_digits[b >> 4];
*q++ = hex_digits[b & 0xf];
}
*q++ = '\n';
gp_fwrite(line, 1, q - line, f);
q = line;
}
}
/* ---------------- Level 2 RGB driver ---------------- */
/*
* This driver produces plane-separated, run-length-encoded, 24-bit RGB
* images suitable for a PostScript Level 2 printer. LZW compression would
* be better, but Unisys' claim to own the compression algorithm and their
* demand for licensing and payment even for freely distributed software
* rule this out.
*/
static const char *const psrgb_setup[] = {
"/rgbimage {", /* <width> <height> rgbimage - */
" gsave 2 copy scale /h exch def /w exch def",
" /s1 w string def /s2 w string def /s3 w string def",
" /f currentfile /ASCII85Decode filter /RunLengthDecode filter def",
" w h 8 [w 0 0 h neg 0 h]",
" {f s1 readstring pop} {f s2 readstring pop} {f s3 readstring pop}",
" true 3 colorimage grestore",
"} bind def",
0
};
static const gx_device_pswrite_common_t psrgb_values =
PSWRITE_COMMON_VALUES(2, 0 /*false*/, 1);
/* Send the page to the printer. */
static int
psrgb_print_page(gx_device_printer * pdev, gp_file * prn_stream)
{
gs_memory_t *mem = pdev->memory;
int width = pdev->width;
byte *lbuf = gs_alloc_bytes(mem, width * 3,
"psrgb_print_page(lbuf)");
int lnum, code = 0;
stream fs, a85s, rls;
stream_A85E_state a85state;
stream_RLE_state rlstate;
byte fsbuf[200]; /* arbitrary, must be >2 */
byte a85sbuf[100]; /* arbitrary, must be >=6 */
byte rlsbuf[200]; /* arbitrary, must be >128 */
gx_device_pswrite_common_t pswrite_common;
pswrite_common = psrgb_values;
if (lbuf == 0)
return_error(gs_error_VMerror);
ps_image_write_headers(prn_stream, pdev, psrgb_setup, &pswrite_common);
fprintf(prn_stream, "%d %d rgbimage\n", width, pdev->height);
s_init(&fs, mem);
swrite_file(&fs, prn_stream, fsbuf, sizeof(fsbuf));
fs.memory = 0;
if (s_A85E_template.set_defaults)
(*s_A85E_template.set_defaults) ((stream_state *) & a85state);
s_init(&a85s, mem);
s_std_init(&a85s, a85sbuf, sizeof(a85sbuf), &s_filter_write_procs,
s_mode_write);
a85s.memory = 0;
a85state.memory = 0;
a85state.templat = &s_A85E_template;
(*s_A85E_template.init) ((stream_state *) & a85state);
a85s.state = (stream_state *) & a85state;
a85s.procs.process = s_A85E_template.process;
a85s.strm = &fs;
(*s_RLE_template.set_defaults) ((stream_state *) & rlstate);
s_init(&rls, mem);
s_std_init(&rls, rlsbuf, sizeof(rlsbuf), &s_filter_write_procs,
s_mode_write);
rls.memory = 0;
rlstate.memory = 0;
rlstate.templat = &s_RLE_template;
(*s_RLE_template.init) ((stream_state *) & rlstate);
rls.state = (stream_state *) & rlstate;
rls.procs.process = s_RLE_template.process;
rls.strm = &a85s;
for (lnum = 0; lnum < pdev->height; ++lnum) {
byte *data;
int i, c;
code = gdev_prn_get_bits(pdev, lnum, lbuf, &data);
if (code < 0)
goto xit;
for (c = 0; c < 3; ++c) {
const byte *p;
for (i = 0, p = data + c; i < width; ++i, p += 3)
sputc(&rls, *p);
if (rls.end_status == ERRC)
return_error(gs_error_ioerror);
}
}
sclose(&rls);
sclose(&a85s);
sflush(&fs);
fputs("\n", prn_stream);
psw_write_page_trailer(prn_stream, 1, true);
xit:
gs_free_object(mem, lbuf, "psrgb_print_page(lbuf)");
if (code < 0)
return_error(code);
if (ferror(prn_stream))
return_error(gs_error_ioerror);
return 0;
}
/* Close the file. */
static int
psrgb_close(gx_device *dev)
{
int code = psw_end_file(((gx_device_printer *)dev)->file, dev,
&psrgb_values, NULL, dev->PageCount);
if (code < 0)
return code;
return gdev_prn_close(dev);
}
|