summaryrefslogtreecommitdiff
path: root/image
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2013-06-12 13:46:21 +0200
committerTor Andersson <tor.andersson@artifex.com>2013-06-18 00:06:46 +0200
commit03e5755b93e90cc4c09daad4c79b6016bf4ce43c (patch)
treed2992e30fcddf864ad64bd026884e79d92903977 /image
parentb695c87abcdbe0ddc35c5e3a7ee8f5f58ee577f1 (diff)
downloadmupdf-03e5755b93e90cc4c09daad4c79b6016bf4ce43c.tar.xz
Move header files into separate include directory.
Diffstat (limited to 'image')
-rw-r--r--image/muimage.c4
-rw-r--r--image/muimage.h51
2 files changed, 2 insertions, 53 deletions
diff --git a/image/muimage.c b/image/muimage.c
index 6df668e2..cbaae139 100644
--- a/image/muimage.c
+++ b/image/muimage.c
@@ -1,5 +1,5 @@
-#include "fitz-internal.h"
-#include "muimage.h"
+#include "mupdf/fitz-internal.h"
+#include "mupdf/image.h"
#include <ctype.h> /* for tolower */
diff --git a/image/muimage.h b/image/muimage.h
deleted file mode 100644
index 146132f0..00000000
--- a/image/muimage.h
+++ /dev/null
@@ -1,51 +0,0 @@
-#ifndef MUIMAGE_H
-#define MUIMAGE_H
-
-#include "fitz.h"
-
-typedef struct image_document_s image_document;
-typedef struct image_page_s image_page;
-
-/*
- image_open_document: Open a document.
-
- Open a document for reading so the library is able to locate
- objects and pages inside the file.
-
- The returned image_document should be used when calling most
- other functions. Note that it wraps the context, so those
- functions implicitly get access to the global state in
- context.
-
- filename: a path to a file as it would be given to open(2).
-*/
-image_document *image_open_document(fz_context *ctx, const char *filename);
-
-/*
- image_open_document_with_stream: Opens a document.
-
- Same as image_open_document, but takes a stream instead of a
- filename to locate the document to open. Increments the
- reference count of the stream. See fz_open_file,
- fz_open_file_w or fz_open_fd for opening a stream, and
- fz_close for closing an open stream.
-*/
-image_document *image_open_document_with_stream(fz_context *ctx, fz_stream *file);
-
-/*
- image_close_document: Closes and frees an opened document.
-
- The resource store in the context associated with image_document
- is emptied.
-
- Does not throw exceptions.
-*/
-void image_close_document(image_document *doc);
-
-int image_count_pages(image_document *doc);
-image_page *image_load_page(image_document *doc, int number);
-fz_rect *image_bound_page(image_document *doc, image_page *page, fz_rect *rect);
-void image_free_page(image_document *doc, image_page *page);
-void image_run_page(image_document *doc, image_page *page, fz_device *dev, const fz_matrix *ctm, fz_cookie *cookie);
-
-#endif