GRASS Programmer's Manual  6.5.svn(2014)-r66266
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
write_png.c
Go to the documentation of this file.
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <png.h>
4 
5 #include <grass/gis.h>
6 #include "pngdriver.h"
7 
8 
9 static void write_data(png_structp png_ptr, png_bytep data, png_size_t length)
10 {
11  png_size_t check;
12  FILE *fp;
13 
14  if (png_ptr == NULL )
15  return;
16 
17  fp = (FILE *) png_get_io_ptr(png_ptr);
18  if ( fp == NULL )
19  return;
20 
21  check = fwrite(data, 1, length, fp);
22 
23  if (check != length)
24  G_fatal_error("PNG: Write Error");
25 }
26 
27 static void output_flush(png_structp png_ptr)
28 {
29  FILE *fp;
30 
31  if (png_ptr == NULL )
32  return;
33 
34  fp = (FILE *) png_get_io_ptr(png_ptr);
35  if ( fp == NULL )
36  return;
37 
38  fflush( fp );
39 }
40 
41 void write_png(void)
42 {
43  static jmp_buf jbuf;
44  static png_struct *png_ptr;
45  static png_info *info_ptr;
46  FILE *output;
47  int x, y;
48  unsigned int *p;
49  png_bytep line;
50  const char *str;
51  int compress;
52 
53  png_ptr =
54  png_create_write_struct(PNG_LIBPNG_VER_STRING, &jbuf, NULL, NULL);
55  if (!png_ptr)
56  G_fatal_error("PNG: couldn't allocate PNG structure");
57 
58  info_ptr = png_create_info_struct(png_ptr);
59  if (!info_ptr)
60  G_fatal_error("PNG: couldn't allocate PNG structure");
61 
62  if (setjmp(png_jmpbuf(png_ptr)))
63  G_fatal_error("error writing PNG file");
64 
65  output = fopen(file_name, "wb");
66  if (!output)
67  G_fatal_error("PNG: couldn't open output file %s", file_name);
68 
69  png_set_write_fn(png_ptr, output, write_data, output_flush);
70 
71  png_set_IHDR(png_ptr, info_ptr,
72  width, height, 8,
73  true_color ? PNG_COLOR_TYPE_RGB_ALPHA :
74  PNG_COLOR_TYPE_PALETTE, PNG_INTERLACE_NONE,
75  PNG_COMPRESSION_TYPE_DEFAULT, PNG_FILTER_TYPE_DEFAULT);
76 
77  if (true_color)
78  png_set_invert_alpha(png_ptr);
79  else {
80  png_color png_pal[256];
81  int i;
82 
83  for (i = 0; i < 256; i++) {
84  png_pal[i].red = png_palette[i][0];
85  png_pal[i].green = png_palette[i][1];
86  png_pal[i].blue = png_palette[i][2];
87  }
88 
89  png_set_PLTE(png_ptr, info_ptr, png_pal, 256);
90 
91  if (has_alpha) {
92  png_byte trans = (png_byte) 0;
93 
94  png_set_tRNS(png_ptr, info_ptr, &trans, 1, NULL);
95  }
96  }
97 
98  str = getenv("GRASS_PNG_COMPRESSION");
99  if (str && sscanf(str, "%d", &compress) == 1)
100  png_set_compression_level(png_ptr, compress);
101 
102  png_write_info(png_ptr, info_ptr);
103 
104  line = G_malloc(width * 4);
105 
106  for (y = 0, p = grid; y < height; y++) {
107  png_bytep q = line;
108 
109  if (true_color)
110  for (x = 0; x < width; x++, p++) {
111  unsigned int c = *p;
112  int r, g, b, a;
113 
114  get_pixel(c, &r, &g, &b, &a);
115  *q++ = (png_byte) r;
116  *q++ = (png_byte) g;
117  *q++ = (png_byte) b;
118  *q++ = (png_byte) a;
119  }
120  else
121  for (x = 0; x < width; x++, p++, q++)
122  *q = (png_byte) * p;
123 
124  png_write_row(png_ptr, line);
125  }
126 
127  G_free(line);
128 
129  png_write_end(png_ptr, info_ptr);
130 
131  png_destroy_write_struct(&png_ptr, &info_ptr);
132 
133  fclose(output);
134 }
void G_free(void *buf)
Free allocated memory.
Definition: gis/alloc.c:142
float b
Definition: named_colr.c:8
int has_alpha
tuple q
Definition: forms.py:2019
void get_pixel(unsigned int pixel, int *r, int *g, int *b, int *a)
void write_png(void)
Definition: write_png.c:41
float r
Definition: named_colr.c:8
struct transport * trans
Definition: com_io.c:143
tuple width
unsigned char * grid
int y
Definition: plot.c:34
int true_color
char * getenv()
tuple data
char * file_name
float g
Definition: named_colr.c:8
unsigned char png_palette[256][4]
return NULL
Definition: dbfopen.c:1394
fclose(fd)
int G_fatal_error(const char *msg,...)
Print a fatal error message to stderr.
int height
void output(const char *fmt,...)