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
|
/* Copyright (C) 2001-2012 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., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* .BMP file format driver utilities */
#include "gdevprn.h"
#include "gdevbmp.h"
/*
* Define BMP file format structures.
* All multi-byte quantities are stored LSB-first!
*/
typedef ushort word;
#if arch_sizeof_int == 4
typedef uint dword;
#else
# if arch_sizeof_long == 4
typedef ulong dword;
# endif
#endif
#if arch_is_big_endian
# define BMP_ASSIGN_WORD(a,v) a = ((v) >> 8) + ((v) << 8)
# define BMP_ASSIGN_DWORD(a,v)\
a = ((v) >> 24) + (((v) >> 8) & 0xff00L) +\
(((dword)(v) << 8) & 0xff0000L) + ((dword)(v) << 24)
#else
# define BMP_ASSIGN_WORD(a,v) a = (v)
# define BMP_ASSIGN_DWORD(a,v) a = (v)
#endif
typedef struct bmp_file_header_s {
/* BITMAPFILEHEADER */
/*
* This structure actually begins with two bytes
* containing the characters 'BM', but we must omit them,
* because some compilers would insert padding to force
* the size member to a 32- or 64-bit boundary.
*/
/*byte typeB, typeM; *//* always 'BM' */
dword size; /* total size of file */
word reserved1;
word reserved2;
dword offBits; /* offset of bits from start of file */
} bmp_file_header;
#define sizeof_bmp_file_header (2 + sizeof(bmp_file_header))
typedef struct bmp_info_header_s {
/* BITMAPINFOHEADER */
dword size; /* size of info header in bytes */
dword width; /* width in pixels */
dword height; /* height in pixels */
word planes; /* # of planes, always 1 */
word bitCount; /* bits per pixel */
dword compression; /* compression scheme, always 0 */
dword sizeImage; /* size of bits */
dword xPelsPerMeter; /* X pixels per meter */
dword yPelsPerMeter; /* Y pixels per meter */
dword clrUsed; /* # of colors used */
dword clrImportant; /* # of important colors */
/* This is followed by (1 << bitCount) bmp_quad structures, */
/* unless bitCount == 24. */
} bmp_info_header;
typedef struct bmp_quad_s {
/* RGBQUAD */
byte blue, green, red, reserved;
} bmp_quad;
/* Write the BMP file header. */
static int
write_bmp_depth_header(gx_device_printer *pdev, FILE *file, int depth,
const byte *palette /* [4 << depth] */,
int raster)
{
/* BMP scan lines are padded to 32 bits. */
ulong bmp_raster = raster + (-raster & 3);
int height = pdev->height;
int quads = (depth <= 8 ? sizeof(bmp_quad) << depth : 0);
/* Write the file header. */
fputc('B', file);
fputc('M', file);
{
bmp_file_header fhdr;
BMP_ASSIGN_DWORD(fhdr.size,
sizeof_bmp_file_header +
sizeof(bmp_info_header) + quads +
bmp_raster * height);
BMP_ASSIGN_WORD(fhdr.reserved1, 0);
BMP_ASSIGN_WORD(fhdr.reserved2, 0);
BMP_ASSIGN_DWORD(fhdr.offBits,
sizeof_bmp_file_header +
sizeof(bmp_info_header) + quads);
if (fwrite((const char *)&fhdr, 1, sizeof(fhdr), file) != sizeof(fhdr))
return_error(gs_error_ioerror);
}
/* Write the info header. */
{
bmp_info_header ihdr;
BMP_ASSIGN_DWORD(ihdr.size, sizeof(ihdr));
BMP_ASSIGN_DWORD(ihdr.width, pdev->width);
BMP_ASSIGN_DWORD(ihdr.height, height);
BMP_ASSIGN_WORD(ihdr.planes, 1);
BMP_ASSIGN_WORD(ihdr.bitCount, depth);
BMP_ASSIGN_DWORD(ihdr.compression, 0);
BMP_ASSIGN_DWORD(ihdr.sizeImage, bmp_raster * height);
/*
* Earlier versions of this driver set the PelsPerMeter values
* to zero. At a user's request, we now set them correctly,
* but we suspect this will cause problems other places.
*/
#define INCHES_PER_METER (100 /*cm/meter*/ / 2.54 /*cm/inch*/)
BMP_ASSIGN_DWORD(ihdr.xPelsPerMeter,
(dword)(pdev->x_pixels_per_inch * INCHES_PER_METER + 0.5));
BMP_ASSIGN_DWORD(ihdr.yPelsPerMeter,
(dword)(pdev->y_pixels_per_inch * INCHES_PER_METER + 0.5));
#undef INCHES_PER_METER
BMP_ASSIGN_DWORD(ihdr.clrUsed, 0);
BMP_ASSIGN_DWORD(ihdr.clrImportant, 0);
if (fwrite((const char *)&ihdr, 1, sizeof(ihdr), file) != sizeof(ihdr))
return_error(gs_error_ioerror);
}
/* Write the palette. */
if (depth <= 8)
fwrite(palette, sizeof(bmp_quad), 1 << depth, file);
return 0;
}
/* Write the BMP file header. */
int
write_bmp_header(gx_device_printer *pdev, FILE *file)
{
int depth = pdev->color_info.depth;
bmp_quad palette[256];
if (depth <= 8) {
int i;
gx_color_value rgb[3];
bmp_quad q;
q.reserved = 0;
for (i = 0; i != 1 << depth; i++) {
/* Note that the use of map_color_rgb is deprecated in
favor of decode_color. This should work, though, because
backwards compatibility is preserved. */
(*dev_proc(pdev, map_color_rgb))((gx_device *)pdev,
(gx_color_index)i, rgb);
q.red = gx_color_value_to_byte(rgb[0]);
q.green = gx_color_value_to_byte(rgb[1]);
q.blue = gx_color_value_to_byte(rgb[2]);
palette[i] = q;
}
}
return write_bmp_depth_header(pdev, file, depth, (const byte *)palette,
gdev_prn_raster(pdev));
}
/* Write a BMP header for separated CMYK output. */
int
write_bmp_separated_header(gx_device_printer *pdev, FILE *file)
{
int depth = pdev->color_info.depth;
int plane_depth = depth / 4;
bmp_quad palette[256];
bmp_quad q;
int i;
q.reserved = 0;
for (i = 0; i < 1 << plane_depth; i++) {
q.red = q.green = q.blue =
255 - i * 255 / ((1 << plane_depth) - 1);
palette[i] = q;
}
return write_bmp_depth_header(pdev, file, plane_depth,
(const byte *)palette,
(pdev->width*plane_depth + 7) >> 3);
}
/* 24-bit color mappers (taken from gdevmem2.c). */
/* Note that Windows expects RGB values in the order B,G,R. */
/* Map a r-g-b color to a color index. */
gx_color_index
bmp_map_16m_rgb_color(gx_device * dev, const gx_color_value cv[])
{
gx_color_value r, g, b;
r = cv[0]; g = cv[1]; b = cv[2];
return gx_color_value_to_byte(r) +
((uint) gx_color_value_to_byte(g) << 8) +
((ulong) gx_color_value_to_byte(b) << 16);
}
/* Map a color index to a r-g-b color. */
int
bmp_map_16m_color_rgb(gx_device * dev, gx_color_index color,
gx_color_value prgb[3])
{
prgb[2] = gx_color_value_from_byte(color >> 16);
prgb[1] = gx_color_value_from_byte((color >> 8) & 0xff);
prgb[0] = gx_color_value_from_byte(color & 0xff);
return 0;
}
|