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
|
/*!
\file lib/cairodriver/write_bmp.c
\brief GRASS cairo display driver - write bitmap (lower level functions)
(C) 2007-2008 by Lars Ahlzen and the GRASS Development Team
This program is free software under the GNU General Public License
(>=v2). Read the file COPYING that comes with GRASS for details.
\author Lars Ahlzen <lars ahlzen.com> (original contributor)
\author Glynn Clements
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <grass/gis.h>
#include <grass/glocale.h>
#include "cairodriver.h"
static unsigned char *put_2(unsigned char *p, unsigned int n)
{
*p++ = n & 0xFF;
n >>= 8;
*p++ = n & 0xFF;
return p;
}
static unsigned char *put_4(unsigned char *p, unsigned int n)
{
*p++ = n & 0xFF;
n >>= 8;
*p++ = n & 0xFF;
n >>= 8;
*p++ = n & 0xFF;
n >>= 8;
*p++ = n & 0xFF;
return p;
}
static void make_bmp_header(unsigned char *p)
{
*p++ = 'B';
*p++ = 'M';
p = put_4(p, HEADER_SIZE + ca.width * ca.height * 4);
p = put_4(p, 0);
p = put_4(p, HEADER_SIZE);
p = put_4(p, 40);
p = put_4(p, ca.width);
p = put_4(p, -ca.height);
p = put_2(p, 1);
p = put_2(p, 32);
p = put_4(p, 0);
p = put_4(p, ca.width * ca.height * 4);
p = put_4(p, 0);
p = put_4(p, 0);
p = put_4(p, 0);
p = put_4(p, 0);
}
void cairo_write_bmp(void)
{
unsigned char header[HEADER_SIZE];
FILE *output;
output = fopen(ca.file_name, "wb");
if (!output)
G_fatal_error(_("Cairo: unable to open output file <%s>"),
ca.file_name);
memset(header, 0, sizeof(header));
make_bmp_header(header);
fwrite(header, sizeof(header), 1, output);
fwrite(ca.grid, ca.stride, ca.height, output);
fclose(output);
}
|