summaryrefslogtreecommitdiff
path: root/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'image.h')
-rw-r--r--image.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/image.h b/image.h
index 8d767f9..c5baebc 100644
--- a/image.h
+++ b/image.h
@@ -1,3 +1,5 @@
+#include <gdk/gdkpixbuf.h>
+#include <stdint.h>
#include "complex.h"
typedef struct complex_image_t complex_image_t;
@@ -19,3 +21,6 @@ complex_image_copy (complex_image_t *image);
void
complex_image_subtract (complex_image_t *image,
complex_image_t *other);
+
+complex_image_t *
+complex_image_from_pixbuf (GdkPixbuf *pixbuf);