summaryrefslogtreecommitdiff
path: root/source/img
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2013-06-19 15:29:44 +0200
committerTor Andersson <tor.andersson@artifex.com>2013-06-20 16:45:35 +0200
commit0a927854a10e1e6b9770a81e2e1d9f3093631757 (patch)
tree3d65d820d9fdba2d0d394d99c36290c851b78ca0 /source/img
parent1ae8f19179c5f0f8c6352b3c7855465325d5449a (diff)
downloadmupdf-0a927854a10e1e6b9770a81e2e1d9f3093631757.tar.xz
Rearrange source files.
Diffstat (limited to 'source/img')
-rw-r--r--source/img/muimage.c148
1 files changed, 148 insertions, 0 deletions
diff --git a/source/img/muimage.c b/source/img/muimage.c
new file mode 100644
index 00000000..ed3280b2
--- /dev/null
+++ b/source/img/muimage.c
@@ -0,0 +1,148 @@
+#include "mupdf/image.h"
+
+#include <ctype.h> /* for tolower */
+
+#define DPI 72.0f
+
+static void image_init_document(image_document *doc);
+
+struct image_document_s
+{
+ fz_document super;
+
+ fz_context *ctx;
+ fz_stream *file;
+ fz_image *image;
+};
+
+image_document *
+image_open_document_with_stream(fz_context *ctx, fz_stream *file)
+{
+ image_document *doc;
+ fz_buffer *buffer = NULL;
+
+ doc = fz_malloc_struct(ctx, image_document);
+ image_init_document(doc);
+ doc->ctx = ctx;
+ doc->file = fz_keep_stream(file);
+
+ fz_var(buffer);
+
+ fz_try(ctx)
+ {
+ buffer = fz_read_all(doc->file, 1024);
+ doc->image = fz_new_image_from_buffer(ctx, buffer);
+ }
+ fz_always(ctx)
+ {
+ fz_drop_buffer(ctx, buffer);
+ }
+ fz_catch(ctx)
+ {
+ image_close_document(doc);
+ fz_rethrow(ctx);
+ }
+
+ return doc;
+}
+
+image_document *
+image_open_document(fz_context *ctx, const char *filename)
+{
+ fz_stream *file;
+ image_document *doc;
+
+ file = fz_open_file(ctx, filename);
+ if (!file)
+ fz_throw(ctx, FZ_ERROR_GENERIC, "cannot open file '%s': %s", filename, strerror(errno));
+
+ fz_try(ctx)
+ {
+ doc = image_open_document_with_stream(ctx, file);
+ }
+ fz_always(ctx)
+ {
+ fz_close(file);
+ }
+ fz_catch(ctx)
+ {
+ fz_rethrow(ctx);
+ }
+
+ return doc;
+}
+
+void
+image_close_document(image_document *doc)
+{
+ fz_context *ctx = doc->ctx;
+ fz_drop_image(ctx, doc->image);
+ fz_close(doc->file);
+ fz_free(ctx, doc);
+}
+
+int
+image_count_pages(image_document *doc)
+{
+ return 1;
+}
+
+image_page *
+image_load_page(image_document *doc, int number)
+{
+ if (number != 0)
+ return NULL;
+
+ return (image_page *)doc->image;
+}
+
+void
+image_free_page(image_document *doc, image_page *page)
+{
+}
+
+fz_rect *
+image_bound_page(image_document *doc, image_page *page, fz_rect *bbox)
+{
+ fz_image *image = (fz_image *)page;
+ bbox->x0 = bbox->y0 = 0;
+ bbox->x1 = image->w * DPI / image->xres;
+ bbox->y1 = image->h * DPI / image->yres;
+ return bbox;
+}
+
+void
+image_run_page(image_document *doc, image_page *page, fz_device *dev, const fz_matrix *ctm, fz_cookie *cookie)
+{
+ fz_matrix local_ctm = *ctm;
+ fz_image *image = (fz_image *)page;
+ float w = image->w * DPI / image->xres;
+ float h = image->h * DPI / image->yres;
+ fz_pre_scale(&local_ctm, w, h);
+ fz_fill_image(dev, image, &local_ctm, 1);
+}
+
+static int
+image_meta(image_document *doc, int key, void *ptr, int size)
+{
+ switch(key)
+ {
+ case FZ_META_FORMAT_INFO:
+ sprintf((char *)ptr, "IMAGE");
+ return FZ_META_OK;
+ default:
+ return FZ_META_UNKNOWN_KEY;
+ }
+}
+
+static void
+image_init_document(image_document *doc)
+{
+ doc->super.close = (void*)image_close_document;
+ doc->super.count_pages = (void*)image_count_pages;
+ doc->super.load_page = (void*)image_load_page;
+ doc->super.bound_page = (void*)image_bound_page;
+ doc->super.run_page_contents = (void*)image_run_page;
+ doc->super.free_page = (void*)image_free_page;
+ doc->super.meta = (void*)image_meta;
+}