diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-21 10:51:08 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-21 10:51:08 +0200 |
commit | ded124f1cc463bac9e076146a4ffb77b8a370e0c (patch) | |
tree | c1b35fe12bd14ed507294b185587b428a92bcbef /include/fitz/image.h | |
parent | 730cf84f6323b977bf7bcde1557d1803a16ad855 (diff) | |
download | mupdf-ded124f1cc463bac9e076146a4ffb77b8a370e0c.tar.xz |
rewrote resource dict handling
Diffstat (limited to 'include/fitz/image.h')
-rw-r--r-- | include/fitz/image.h | 10 |
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; +}; + |