blob: 61660a78fd426c906d84b59cd9f22d111b822e76 (
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
|
/*
* render.h
*
* Render a high dynamic range buffer in some sensible way
*
* (c) 2008 Thomas White <taw27@cam.ac.uk>
*
* Part of CrystFEL - crystallography with a FEL
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef RENDER_H
#define RENDER_H
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <stddef.h>
extern GdkPixbuf *render_get_image(struct hdfile *micron, int binning,
int boostint, int monochrome);
extern GdkPixbuf *render_get_colour_scale(size_t w, size_t h, int monochrome);
#endif /* RENDER_H */
|