summaryrefslogtreecommitdiff
path: root/include/fitz/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fitz/image.h')
-rw-r--r--include/fitz/image.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/fitz/image.h b/include/fitz/image.h
new file mode 100644
index 00000000..0ff954c5
--- /dev/null
+++ b/include/fitz/image.h
@@ -0,0 +1,10 @@
+typedef struct fz_image_s fz_image;
+
+struct fz_image_s
+{
+ fz_error* (*loadtile)(fz_image*,fz_pixmap*);
+ void (*free)(fz_image*);
+ fz_colorspace *cs;
+ int w, h, n, a;
+};
+