/* 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" devices to measure 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_mono_map_rgb_color); 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); #define bit_procs(map_rgb_color, map_cmyk_color)\ { gdev_prn_open,\ gx_default_get_initial_matrix,\ NULL, /* sync_output */\ gdev_prn_output_page,\ gdev_prn_close,\ 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,\ 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 */\ } private gx_device_procs bitmono_procs = bit_procs(bit_mono_map_rgb_color, NULL); gx_device_printer far_data gs_bit_device = { prn_device_body(gx_device_printer, bitmono_procs, "bit", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0,0,0,0, /* margins */ 1,1,1,0,2,1, bit_print_page) }; private gx_device_procs bitrgb_procs = bit_procs(bit_map_rgb_color, NULL); gx_device_printer far_data gs_bitrgb_device = { prn_device_body(gx_device_printer, bitrgb_procs, "bitrgb", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0,0,0,0, /* margins */ 3,4,1,1,2,2, bit_print_page) }; private gx_device_procs bitcmyk_procs = bit_procs(NULL, bit_map_cmyk_color); gx_device_printer far_data gs_bitcmyk_device = { prn_device_body(gx_device_printer, bitcmyk_procs, "bitcmyk", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0,0,0,0, /* margins */ 4,4,1,1,2,2, bit_print_page) }; /* Map gray to color. */ /* Note that 1-bit monochrome is a special case. */ private gx_color_index bit_mono_map_rgb_color(gx_device *dev, gx_color_value red, gx_color_value green, gx_color_value blue) { int bpc = dev->color_info.depth; int drop = sizeof(gx_color_value) * 8 - bpc; 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; } /* Map RGB to color. */ private gx_color_index bit_map_rgb_color(gx_device *dev, gx_color_value red, gx_color_value green, gx_color_value blue) { int bpc = dev->color_info.depth / 3; int drop = sizeof(gx_color_value) * 8 - bpc; 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) { 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. We allow setting 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 = 0; int 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; 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 ) return ecode; ecode = gdev_prn_put_params(pdev, plist); if ( ecode < 0 ) return ecode; if ( code != 1 ) { if ( pdev->is_open ) gs_closedevice(pdev); pdev->color_info.depth = depths[ncomps - 1][bpc - 1]; pdev->color_info.max_gray = pdev->color_info.max_color = (pdev->color_info.dither_grays = pdev->color_info.dither_colors = (1 << bpc)) - 1; } return 0; } /* 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; }