aboutsummaryrefslogtreecommitdiff
path: root/src/render.h
blob: 79d7ec68e4f3b27309b64748e3d2d80abcf0ad11 (plain)
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
/*
 * render.h
 *
 * Render a high dynamic range buffer in some sensible way
 *
 * (c) 2006-2011 Thomas White <taw@physics.org>
 *
 * Part of CrystFEL - crystallography with a FEL
 *
 */


#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifndef RENDER_H
#define RENDER_H


#include <stddef.h>

#include "image.h"

enum {
	SCALE_COLOUR,
	SCALE_MONO,
	SCALE_INVMONO
};

/* Colour scale lookup */
extern void render_scale(float val, float max, int scale,
                         float *rp, float *gp, float *bp);


#ifdef HAVE_GTK

#include <gdk-pixbuf/gdk-pixbuf.h>

extern GdkPixbuf *render_get_image(struct image *image,
                                   int binning, int scale, double boost);

extern GdkPixbuf **render_panels(struct image *image,
                                  int binning, int scale, double boost,
                                  int *n_pixbufs);

extern GdkPixbuf *render_get_colour_scale(size_t w, size_t h, int scale);

extern int render_png(GdkPixbuf *pixbuf, const char *filename);
extern int render_tiff_fp(struct image *image, const char *filename);
extern int render_tiff_int16(struct image *image, const char *filename,
                             double boost);

#endif /* HAVE_GTK */



#endif	/* RENDER_H */