home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 February
/
PCWK0296.iso
/
sharewar
/
dos
/
program
/
gs300sr1
/
gs300sr1.exe
/
GDEVBIT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-07-27
|
6KB
|
187 lines
/* Copyright (C) 1991, 1994 Aladdin Enterprises. All rights reserved.
This file is part of Aladdin Ghostscript.
Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
or distributor accepts any responsibility for the consequences of using it,
or for whether it serves any particular purpose or works at all, unless he
or she says so in writing. Refer to the Aladdin Ghostscript Free Public
License (the "License") for full details.
Every copy of Aladdin Ghostscript must include a copy of the License,
normally in a plain ASCII text file named PUBLIC. The License grants you
the right to copy, modify and redistribute Aladdin Ghostscript, but only
under certain conditions described in the License. Among other things, the
License requires that the copyright notice and this notice be preserved on
all copies.
*/
/* gdevbit.c */
/* "Plain bits" device to estimate rendering time. */
#include "gdevprn.h"
#include "gsparam.h"
#include "gxlum.h"
/* Define the device parameters. */
#ifndef X_DPI
# define X_DPI 72
#endif
#ifndef Y_DPI
# define Y_DPI 72
#endif
/* The device descriptor */
private dev_proc_map_rgb_color(bit_map_rgb_color);
private dev_proc_map_cmyk_color(bit_map_cmyk_color);
private dev_proc_put_params(bit_put_params);
private dev_proc_print_page(bit_print_page);
private gx_device_procs bit_procs = {
gdev_prn_open,
gx_default_get_initial_matrix,
NULL, /* sync_output */
gdev_prn_output_page,
gdev_prn_close,
bit_map_rgb_color,
gdev_prn_map_color_rgb, /* (never called) */
NULL, /* fill_rectangle */
NULL, /* tile_rectangle */
NULL, /* copy_mono */
NULL, /* copy_color */
NULL, /* draw_line */
NULL, /* get_bits */
gdev_prn_get_params,
bit_put_params,
bit_map_cmyk_color,
NULL, /* get_xfont_procs */
NULL, /* get_xfont_device */
NULL, /* map_rgb_alpha_color */
gx_page_device_get_page_device /* get_page_device */
};
gx_device_printer far_data gs_bit_device =
prn_device(bit_procs, "bit",
DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
X_DPI, Y_DPI,
0,0,0,0, /* margins */
1, bit_print_page);
/* Map RGB or gray to color. */
/* Note that 1-bit monochrome is a special case. */
private gx_color_index
bit_map_rgb_color(gx_device *dev, gx_color_value red,
gx_color_value green, gx_color_value blue)
{ int ncomps = dev->color_info.num_components;
int bpc = dev->color_info.depth / ncomps;
int drop = sizeof(gx_color_value) * 8 - bpc;
if ( ncomps == 1 )
{ gx_color_value gray =
(red * (unsigned long)lum_red_weight +
green * (unsigned long)lum_green_weight +
blue * (unsigned long)lum_blue_weight +
(lum_all_weights / 2))
/ lum_all_weights;
return (bpc == 1 ? gx_max_color_value - gray : gray) >> drop;
}
else
return ((((red >> drop) << bpc) + (green >> drop)) << bpc) +
(blue >> drop);
}
/* Map CMYK to color. */
private gx_color_index
bit_map_cmyk_color(gx_device *dev, gx_color_value cyan,
gx_color_value magenta, gx_color_value yellow, gx_color_value black)
{ if ( dev->color_info.num_components < 4 )
return gx_default_map_cmyk_color(dev, cyan, magenta, yellow, black);
else
{ int bpc = dev->color_info.depth / 4;
int drop = sizeof(gx_color_value) * 8 - bpc;
return ((((((cyan >> drop) << bpc) +
(magenta >> drop)) << bpc) +
(yellow >> drop)) << bpc) +
(black >> drop);
}
}
/* Set parameters. For maximum flexibility, we allow setting */
/* the number of color components and the number of bits per component. */
private int
bit_put_params(gx_device *pdev, gs_param_list *plist)
{ int ncomps = pdev->color_info.num_components;
int bpc = pdev->color_info.depth / ncomps;
int v;
int ecode = gdev_prn_put_params(pdev, plist);
int rcode = ecode, code;
static const byte depths[4][8] = {
{ 1, 2, 0, 4, 8, 0, 0, 8 },
{ 0 },
{ 4, 8, 0, 16, 16, 0, 0, 24 },
{ 4, 8, 0, 16, 32, 0, 0, 32 }
};
const char _ds *vname;
switch ( code = param_read_int(plist, "Colors", &ncomps) )
{
default:
ecode = code;
case 1:
break;
case 0:
if ( !(ncomps == 1 || ncomps == 3 || ncomps == 4) )
param_signal_error(plist, "Colors",
ecode = gs_error_rangecheck);
else
rcode = 1;
}
if ( (code = param_read_int(plist, vname = "GrayValues", &v)) != 1 ||
(code = param_read_int(plist, vname = "RedValues", &v)) != 1 ||
(code = param_read_int(plist, vname = "GreenValues", &v)) != 1 ||
(code = param_read_int(plist, vname = "BlueValues", &v)) != 1
)
{ if ( code < 0 )
ecode = code;
else switch ( v )
{
case 2: bpc = 1; break;
case 4: bpc = 2; break;
case 16: bpc = 4; break;
case 32: bpc = 5; break;
case 256: bpc = 8; break;
default: param_signal_error(plist, vname,
ecode = gs_error_rangecheck);
}
if ( ecode == 0 )
rcode = 1;
}
if ( ecode < 0 )
return ecode;
if ( rcode == 0 )
return 0;
pdev->color_info.num_components = ncomps;
pdev->color_info.depth = depths[ncomps - 1][bpc - 1];
pdev->color_info.max_gray = pdev->color_info.max_rgb =
(pdev->color_info.dither_gray = pdev->color_info.dither_rgb =
(1 << bpc)) - 1;
return rcode;
}
/* Send the page to the printer. */
private int
bit_print_page(gx_device_printer *pdev, FILE *prn_stream)
{ /* Just dump the bits on the file. */
/* If the file is 'nul', don't even do the writes. */
int line_size = gdev_mem_bytes_per_scan_line((gx_device *)pdev);
int lnum;
byte *in = (byte *)gs_malloc(line_size, 1, "bit_print_page(in)");
byte *data;
int nul = !strcmp(pdev->fname, "nul");
if ( in == 0 )
return_error(gs_error_VMerror);
for ( lnum = 0; lnum < pdev->height; lnum++ )
{ gdev_prn_get_bits(pdev, lnum, in, &data);
if ( !nul )
fwrite(data, 1, line_size, prn_stream);
}
gs_free((char *)in, line_size, 1, "bit_print_page(in)");
return 0;
}