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
|
/* Copyright (C) 1992, 1995 Aladdin Enterprises. All rights reserved.
This file is part of GNU Ghostscript.
GNU Ghostscript is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to
anyone for the consequences of using it or for whether it serves any
particular purpose or works at all, unless he says so in writing. Refer
to the GNU Ghostscript General Public License for full details.
*/
/* gdevpbm.c */
/* Portable Bit/Gray/PixMap drivers */
#include "gdevprn.h"
#include "gscdefs.h"
#include "gxlum.h"
/* Thanks are due to Jos Vos (jos@bull.nl) for an earlier P*M driver, */
/* on which this one is based. */
/*
* The PGM and PPM drivers have an "optimize" flag, which causes them to
* fall back to PBM or (for PPM) PGM if the page can be represented that way.
* This should be a device property, but for now, it's a compile-time option.
*/
#define OPTIMIZE 1
/*
* The code here is designed to work with variable depths for PGM and PPM.
* The restrictions on depth are as follows. Numbers in square brackets
* give the actual restrictions, but the graphics library requires that
* depth be a power of 2 or be 24.
* pgm: 1, 2, 4, 8, 16. [1-16]
* pgmraw: 1, 2, 4, 8. [1-8]
* ppm: 4(3x1), 8(3x2), 16(3x5), 24(3x8), 32(3x10). [3-32]
* ppmraw: 4(3x1), 8(3x2), 16(3x5), 24(3x8). [3-24]
*/
/* Structure for P*M devices, which extend the generic printer device. */
#define MAX_COMMENT 70 /* max user-supplied comment */
struct gx_device_pbm_s {
gx_device_common;
gx_prn_device_common;
/* Additional state for P*M devices */
char magic; /* n for "Pn" */
char comment[MAX_COMMENT + 1]; /* comment for head of file */
byte is_raw; /* 1 if raw format, 0 if plain */
byte optimize; /* 1 if optimization OK, 0 if not */
byte uses_color; /* 0 if image is black and white, */
/* 1 if gray (PGM or PPM only), */
/* 2 or 3 if colored (PPM only) */
};
typedef struct gx_device_pbm_s gx_device_pbm;
#define bdev ((gx_device_pbm *)pdev)
/* ------ The device descriptors ------ */
/*
* Default X and Y resolution.
*/
#define X_DPI 72
#define Y_DPI 72
/* Macro for generating P*M device descriptors. */
#define pbm_prn_device(procs, dev_name, magic, is_raw, num_comp, depth, max_gray, max_rgb, print_page)\
{ prn_device_body(gx_device_pbm, procs, dev_name,\
DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI,\
0, 0, 0, 0,\
num_comp, depth, max_gray, max_rgb, max_gray + 1, max_rgb + 1,\
print_page),\
magic,\
{ 0 },\
is_raw,\
OPTIMIZE\
}
/* For PGM and PPM, we need our own color mapping procedures. */
private dev_proc_map_rgb_color(pgm_map_rgb_color);
private dev_proc_map_rgb_color(ppm_map_rgb_color);
private dev_proc_map_color_rgb(pgm_map_color_rgb);
private dev_proc_map_color_rgb(ppm_map_color_rgb);
/* We need to initialize uses_color when opening the device, */
/* and after each showpage. */
private dev_proc_open_device(ppm_open);
private dev_proc_output_page(ppm_output_page);
/* And of course we need our own print-page routines. */
private dev_proc_print_page(pbm_print_page);
private dev_proc_print_page(pgm_print_page);
private dev_proc_print_page(ppm_print_page);
/* The device procedures */
private gx_device_procs pbm_procs =
prn_procs(gdev_prn_open, ppm_output_page, gdev_prn_close);
private gx_device_procs pgm_procs =
prn_color_procs(gdev_prn_open, ppm_output_page, gdev_prn_close,
pgm_map_rgb_color, pgm_map_color_rgb);
private gx_device_procs ppm_procs =
prn_color_procs(ppm_open, ppm_output_page, gdev_prn_close,
ppm_map_rgb_color, ppm_map_color_rgb);
/* The device descriptors themselves */
gx_device_pbm far_data gs_pbm_device =
pbm_prn_device(pbm_procs, "pbm", '1', 0, 1, 1, 1, 0,
pbm_print_page);
gx_device_pbm far_data gs_pbmraw_device =
pbm_prn_device(pbm_procs, "pbmraw", '4', 1, 1, 1, 1, 1,
pbm_print_page);
gx_device_pbm far_data gs_pgm_device =
pbm_prn_device(pgm_procs, "pgm", '2', 0, 1, 8, 255, 0,
pgm_print_page);
gx_device_pbm far_data gs_pgmraw_device =
pbm_prn_device(pgm_procs, "pgmraw", '5', 1, 1, 8, 255, 0,
pgm_print_page);
gx_device_pbm far_data gs_ppm_device =
pbm_prn_device(ppm_procs, "ppm", '3', 0, 3, 24, 255, 255,
ppm_print_page);
gx_device_pbm far_data gs_ppmraw_device =
pbm_prn_device(ppm_procs, "ppmraw", '6', 1, 3, 24, 255, 255,
ppm_print_page);
/* ------ Initialization ------ */
private int
ppm_open(gx_device *pdev)
{ bdev->uses_color = 0;
return gdev_prn_open(pdev);
}
/* Print a page, and reset uses_color if this is a showpage. */
private int
ppm_output_page(gx_device *pdev, int num_copies, int flush)
{ int code = gdev_prn_output_page(pdev, num_copies, flush);
if ( code < 0 )
return code;
if ( flush )
bdev->uses_color = 0;
return code;
}
/* ------ Color mapping routines ------ */
/* Map an RGB color to a PGM gray value. */
/* Keep track of whether the image is black-and-white or gray. */
private gx_color_index
pgm_map_rgb_color(gx_device *pdev, ushort r, ushort g, ushort b)
{ /* We round the value rather than truncating it. */
gx_color_value gray =
((r * (ulong)lum_red_weight) +
(g * (ulong)lum_green_weight) +
(b * (ulong)lum_blue_weight) +
(lum_all_weights / 2)) / lum_all_weights
* pdev->color_info.max_gray / gx_max_color_value;
if ( !(gray == 0 || gray == pdev->color_info.max_gray) )
bdev->uses_color = 1;
return gray;
}
/* Map a PGM gray value back to an RGB color. */
private int
pgm_map_color_rgb(gx_device *dev, gx_color_index color, ushort prgb[3])
{ gx_color_value gray =
color * gx_max_color_value / dev->color_info.max_gray;
prgb[0] = gray;
prgb[1] = gray;
prgb[2] = gray;
return 0;
}
/* Map an RGB color to a PPM color tuple. */
/* Keep track of whether the image is black-and-white, gray, or colored. */
private gx_color_index
ppm_map_rgb_color(gx_device *pdev, ushort r, ushort g, ushort b)
{ ushort bitspercolor = pdev->color_info.depth / 3;
ulong max_value = (1 << bitspercolor) - 1;
gx_color_value rc = r * max_value / gx_max_color_value;
gx_color_value gc = g * max_value / gx_max_color_value;
gx_color_value bc = b * max_value / gx_max_color_value;
if ( rc == gc && gc == bc ) /* black-and-white or gray */
{ if ( !(rc == 0 || rc == max_value) )
bdev->uses_color |= 1; /* gray */
}
else /* color */
bdev->uses_color = 2;
return ((((ulong)rc << bitspercolor) + gc) << bitspercolor) + bc;
}
/* Map a PPM color tuple back to an RGB color. */
private int
ppm_map_color_rgb(gx_device *dev, gx_color_index color, ushort prgb[3])
{ ushort bitspercolor = dev->color_info.depth / 3;
ushort colormask = (1 << bitspercolor) - 1;
prgb[0] = ((color >> (bitspercolor * 2)) & colormask) *
(ulong)gx_max_color_value / colormask;
prgb[1] = ((color >> bitspercolor) & colormask) *
(ulong)gx_max_color_value / colormask;
prgb[2] = (color & colormask) *
(ulong)gx_max_color_value / colormask;
return 0;
}
/* ------ Internal routines ------ */
/* Print a page using a given row printing routine. */
private int
pbm_print_page_loop(gx_device_printer *pdev, char magic, FILE *pstream,
int (*row_proc)(P4(gx_device_printer *, byte *, int, FILE *)))
{ uint raster = gdev_prn_raster(pdev);
byte *data = (byte *)gs_malloc(raster, 1, "pbm_begin_page");
int lnum = 0;
int code = 0;
if ( data == 0 )
return_error(gs_error_VMerror);
fprintf(pstream, "P%c\n", magic);
if ( bdev->comment[0] )
fprintf(pstream, "# %s\n", bdev->comment);
else
fprintf(pstream, "# Image generated by %s (device=%s)\n",
gs_product, pdev->dname);
fprintf(pstream, "%d %d\n", pdev->width, pdev->height);
switch ( magic )
{
case '1': /* pbm */
case '4': /* pbmraw */
break;
default:
fprintf(pstream, "%d\n", pdev->color_info.max_gray);
}
for ( ; lnum < pdev->height; lnum++ )
{ byte *row;
code = gdev_prn_get_bits(pdev, lnum, data, &row);
if ( code < 0 ) break;
code = (*row_proc)(pdev, row, pdev->color_info.depth, pstream);
if ( code < 0 ) break;
}
gs_free((char *)data, raster, 1, "pbm_print_page_loop");
return (code < 0 ? code : 0);
}
/* ------ Individual page printing routines ------ */
/* Print a monobit page. */
private int
pbm_print_row(gx_device_printer *pdev, byte *data, int depth,
FILE *pstream)
{ if ( bdev->is_raw )
fwrite(data, 1, (pdev->width + 7) >> 3, pstream);
else
{ byte *bp;
uint x, mask;
for ( bp = data, x = 0, mask = 0x80; x < pdev->width; )
{ putc((*bp & mask ? '1' : '0'), pstream);
if ( ++x == pdev->width || !(x & 63) )
putc('\n', pstream);
if ( (mask >>= 1) == 0 )
bp++, mask = 0x80;
}
}
return 0;
}
private int
pbm_print_page(gx_device_printer *pdev, FILE *pstream)
{ return pbm_print_page_loop(pdev, bdev->magic, pstream, pbm_print_row);
}
/* Print a gray-mapped page. */
private int
pgm_print_row(gx_device_printer *pdev, byte *data, int depth,
FILE *pstream)
{ /* Note that bpp <= 8 for raw format, bpp <= 16 for plain. */
uint mask = (1 << depth) - 1;
byte *bp;
uint x;
int shift;
if ( bdev->is_raw && depth == 8 )
fwrite(data, 1, pdev->width, pstream);
else
for ( bp = data, x = 0, shift = 8 - depth; x < pdev->width; )
{ uint pixel;
if ( shift < 0 ) /* bpp = 16 */
{ pixel = ((uint)*bp << 8) + bp[1];
bp += 2;
}
else
{ pixel = (*bp >> shift) & mask;
if ( (shift -= depth) < 0 )
bp++, shift += 8;
}
++x;
if ( bdev->is_raw )
putc(pixel, pstream);
else
fprintf(pstream, "%d%c", pixel,
(x == pdev->width || !(x & 15) ? '\n' : ' '));
}
return 0;
}
private int
pxm_pbm_print_row(gx_device_printer *pdev, byte *data, int depth,
FILE *pstream)
{ /* Compress a PGM or PPM row to a PBM row. */
/* This doesn't have to be very fast. */
/* Note that we have to invert the data as well. */
int delta = (depth + 7) >> 3;
byte *src = data + delta - 1; /* always big-endian */
byte *dest = data;
int x;
byte out_mask = 0x80;
byte out = 0;
if ( depth >= 8 )
{ /* One or more bytes per source pixel. */
for ( x = 0; x < pdev->width; x++, src += delta )
{ if ( !(*src & 1) )
out |= out_mask;
out_mask >>= 1;
if ( !out_mask )
out_mask = 0x80,
*dest++ = out,
out = 0;
}
}
else
{ /* Multiple source pixels per byte. */
byte in_mask = 0x100 >> depth;
for ( x = 0; x < pdev->width; x++ )
{ if ( !(*src & in_mask) )
out |= out_mask;
in_mask >>= depth;
if ( !in_mask )
in_mask = 0x100 >> depth,
src++;
out_mask >>= 1;
if ( !out_mask )
out_mask = 0x80,
*dest++ = out,
out = 0;
}
}
if ( out_mask != 0x80 )
*dest = out;
return pbm_print_row(pdev, data, 1, pstream);
}
private int
pgm_print_page(gx_device_printer *pdev, FILE *pstream)
{ return (bdev->uses_color == 0 && bdev->optimize ?
pbm_print_page_loop(pdev, bdev->magic - 1, pstream,
pxm_pbm_print_row) :
pbm_print_page_loop(pdev, bdev->magic, pstream,
pgm_print_row) );
}
/* Print a color-mapped page. */
private int
ppgm_print_row(gx_device_printer *pdev, byte *data, int depth,
FILE *pstream, bool color)
{ /* If color=false, write only one value per pixel; */
/* if color=true, write 3 values per pixel. */
/* Note that depth <= 24 for raw format, depth <= 32 for plain. */
uint bpe = depth / 3; /* bits per r/g/b element */
uint mask = (1 << bpe) - 1;
byte *bp;
uint x;
uint eol_mask = (color ? 7 : 15);
int shift;
if ( bdev->is_raw && depth == 24 && color )
fwrite(data, 1, pdev->width * (depth / 8), pstream);
else
for ( bp = data, x = 0, shift = 8 - depth; x < pdev->width; )
{ bits32 pixel = 0;
uint r, g, b;
switch ( depth >> 3 )
{
case 4:
pixel = (bits32)*bp << 24; bp++;
/* falls through */
case 3:
pixel += (bits32)*bp << 16; bp++;
/* falls through */
case 2:
pixel += (uint)*bp << 8; bp++;
/* falls through */
case 1:
pixel += *bp; bp++;
break;
case 0: /* bpp == 4, bpe == 1 */
pixel = *bp >> shift;
if ( (shift -= depth) < 0 )
bp++, shift += 8;
break;
}
++x;
b = pixel & mask; pixel >>= bpe;
g = pixel & mask; pixel >>= bpe;
r = pixel & mask;
if ( bdev->is_raw )
{ if ( color )
{ putc(r, pstream);
putc(g, pstream);
}
putc(b, pstream);
}
else
{ if ( color )
fprintf(pstream, "%d %d ", r, g);
fprintf(pstream, "%d%c", b,
(x == pdev->width || !(x & eol_mask) ?
'\n' : ' '));
}
}
return 0;
}
private int
ppm_print_row(gx_device_printer *pdev, byte *data, int depth,
FILE *pstream)
{ return ppgm_print_row(pdev, data, depth, pstream, true);
}
private int
ppm_pgm_print_row(gx_device_printer *pdev, byte *data, int depth,
FILE *pstream)
{ return ppgm_print_row(pdev, data, depth, pstream, false);
}
private int
ppm_print_page(gx_device_printer *pdev, FILE *pstream)
{ return (bdev->uses_color >= 2 || !bdev->optimize ?
pbm_print_page_loop(pdev, bdev->magic, pstream,
ppm_print_row) :
bdev->uses_color == 1 ?
pbm_print_page_loop(pdev, bdev->magic - 1, pstream,
ppm_pgm_print_row) :
pbm_print_page_loop(pdev, bdev->magic - 2, pstream,
pxm_pbm_print_row) );
}
|