/* Copyright (C) 2001-2023 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. */ /* .BMP file format output drivers */ #include "gdevprn.h" #include "gdevpccm.h" #include "gdevbmp.h" /* ------ The device descriptors ------ */ static dev_proc_print_page(bmp_print_page); static dev_proc_print_page(bmp_cmyk_print_page); /* Monochrome. */ const gx_device_printer gs_bmpmono_device = /* The print_page proc is compatible with allowing bg printing */ prn_device(gdev_prn_initialize_device_procs_mono_bg, "bmpmono", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0, 0, 0, 0, /* margins */ 1, bmp_print_page); /* 8-bit (SuperVGA-style) grayscale . */ /* (Uses a fixed palette of 256 gray levels.) */ /* Since the print_page doesn't alter the device, this device can print in the background */ static void bmpgray_initialize_device_procs(gx_device *dev) { gdev_prn_initialize_device_procs_gray_bg(dev); set_dev_proc(dev, encode_color, gx_default_8bit_map_gray_color); set_dev_proc(dev, decode_color, gx_default_8bit_map_color_gray); } const gx_device_printer gs_bmpgray_device = { prn_device_body(gx_device_printer, bmpgray_initialize_device_procs, "bmpgray", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0, 0, 0, 0, /* margins */ 1, 8, 255, 0, 256, 0, bmp_print_page) }; /* 1-bit-per-plane separated CMYK color. */ /* Since the print_page doesn't alter the device, this device can print in the background */ static void bmpsep1_initialize_device_procs(gx_device *dev) { gdev_prn_initialize_device_procs_cmyk1_bg(dev); } const gx_device_printer gs_bmpsep1_device = { prn_device_body(gx_device_printer, bmpsep1_initialize_device_procs, "bmpsep1", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0,0,0,0, /* margins */ 4, 4, 1, 1, 2, 2, bmp_cmyk_print_page) }; /* 8-bit-per-plane separated CMYK color. */ static void bmpsep8_initialize_device_procs(gx_device *dev) { gdev_prn_initialize_device_procs_cmyk8_bg(dev); } const gx_device_printer gs_bmpsep8_device = { prn_device_body(gx_device_printer, bmpsep8_initialize_device_procs, "bmpsep8", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0,0,0,0, /* margins */ 4, 32, 255, 255, 256, 256, bmp_cmyk_print_page) }; /* 4-bit planar (EGA/VGA-style) color. */ /* Since the print_page doesn't alter the device, this device can print in the background */ static void bmp16_initialize_device_procs(gx_device *dev) { gdev_prn_initialize_device_procs_cmyk8_bg(dev); set_dev_proc(dev, map_rgb_color, pc_4bit_map_rgb_color); set_dev_proc(dev, map_color_rgb, pc_4bit_map_color_rgb); set_dev_proc(dev, encode_color, pc_4bit_map_rgb_color); set_dev_proc(dev, decode_color, pc_4bit_map_color_rgb); } const gx_device_printer gs_bmp16_device = { prn_device_body(gx_device_printer, bmp16_initialize_device_procs, "bmp16", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0, 0, 0, 0, /* margins */ 3, 4, 1, 1, 2, 2, bmp_print_page) }; /* 8-bit (SuperVGA-style) color. */ /* (Uses a fixed palette of 3,3,2 bits.) */ /* Since the print_page doesn't alter the device, this device can print in the background */ static void bmp256_initialize_device_procs(gx_device *dev) { gdev_prn_initialize_device_procs_bg(dev); set_dev_proc(dev, map_rgb_color, pc_8bit_map_rgb_color); set_dev_proc(dev, map_color_rgb, pc_8bit_map_color_rgb); set_dev_proc(dev, encode_color, pc_8bit_map_rgb_color); set_dev_proc(dev, decode_color, pc_8bit_map_color_rgb); } const gx_device_printer gs_bmp256_device = { prn_device_body(gx_device_printer, bmp256_initialize_device_procs, "bmp256", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0, 0, 0, 0, /* margins */ 3, 8, 5, 5, 6, 6, bmp_print_page) }; /* 24-bit color. */ /* Since the print_page doesn't alter the device, this device can print in the background */ static void bmp16m_initialize_device_procs(gx_device *dev) { gdev_prn_initialize_device_procs_bg(dev); set_dev_proc(dev, map_rgb_color, bmp_map_16m_rgb_color); set_dev_proc(dev, map_color_rgb, bmp_map_16m_color_rgb); set_dev_proc(dev, encode_color, bmp_map_16m_rgb_color); set_dev_proc(dev, decode_color, bmp_map_16m_color_rgb); } const gx_device_printer gs_bmp16m_device = prn_device(bmp16m_initialize_device_procs, "bmp16m", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0, 0, 0, 0, /* margins */ 24, bmp_print_page); /* 32-bit CMYK color (outside the BMP specification). */ static void bmp32b_initialize_device_procs(gx_device *dev) { gdev_prn_initialize_device_procs_cmyk8_bg(dev); } const gx_device_printer gs_bmp32b_device = prn_device(bmp32b_initialize_device_procs, "bmp32b", DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS, X_DPI, Y_DPI, 0, 0, 0, 0, /* margins */ 32, bmp_print_page); /* ------ Private definitions ------ */ /* Write out a page in BMP format. */ /* This routine is used for all non-separated formats. */ static int bmp_print_page(gx_device_printer * pdev, gp_file * file) { uint raster = gdev_prn_raster(pdev); /* BMP scan lines are padded to 32 bits. */ uint bmp_raster = raster + (-(int)raster & 3); byte *row = gs_alloc_bytes(pdev->memory, bmp_raster, "bmp file buffer"); int y; int code; /* return code */ if (row == 0) /* can't allocate row buffer */ return_error(gs_error_VMerror); memset(row+raster, 0, bmp_raster - raster); /* clear the padding bytes */ /* Write the file header. */ code = write_bmp_header(pdev, file); if (code < 0) goto done; /* Write the contents of the image. */ /* BMP files want the image in bottom-to-top order! */ for (y = pdev->height - 1; y >= 0; y--) { code = gdev_prn_copy_scan_lines(pdev, y, row, raster); if (code < 0) goto done; gp_fwrite((const char *)row, bmp_raster, 1, file); } done: gs_free_object(pdev->memory, row, "bmp file buffer"); return code; } /* Write out a page in separated CMYK format. */ /* This routine is used for all formats. */ static int bmp_cmyk_print_page(gx_device_printer * pdev, gp_file * file) { int plane_depth = pdev->color_info.depth / 4; uint raster = (pdev->width * plane_depth + 7) >> 3; /* BMP scan lines are padded to 32 bits. */ uint bmp_raster = raster + (-(int)raster & 3); byte *row = gs_alloc_bytes(pdev->memory, bmp_raster, "bmp file buffer"); int y; int code = 0; /* return code */ int plane; if (row == 0) /* can't allocate row buffer */ return_error(gs_error_VMerror); memset(row+raster, 0, bmp_raster - raster); /* clear the padding bytes */ for (plane = 0; plane <= 3; ++plane) { gx_render_plane_t render_plane; /* Write the page header. */ code = write_bmp_separated_header(pdev, file); if (code < 0) break; /* Write the contents of the image. */ /* BMP files want the image in bottom-to-top order! */ gx_render_plane_init(&render_plane, (gx_device *)pdev, plane); for (y = pdev->height - 1; y >= 0; y--) { byte *actual_data; uint actual_raster; code = gdev_prn_get_lines(pdev, y, 1, row, bmp_raster, &actual_data, &actual_raster, &render_plane); if (code < 0) goto done; gp_fwrite((const char *)actual_data, bmp_raster, 1, file); } } done: gs_free_object(pdev->memory, row, "bmp file buffer"); return code; }