summaryrefslogtreecommitdiff
path: root/pdf/pdf_xref_aux.c
blob: 2d760334235ab70e0fbead2a87146dd0e7e078f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "fitz-internal.h"
#include "mupdf-internal.h"

/*
	These functions have been split out of pdf_xref.c to allow tools
	to be linked without pulling in the interpreter.  The interpreter
	references the built-in font and cmap resources which are quite
	big. Not linking those into the tools saves roughly 6MB in the
	resulting executables.
*/

static void pdf_run_page_shim(fz_document *doc, fz_page *page, fz_device *dev, fz_matrix transform, fz_cookie *cookie)
{
	pdf_run_page((pdf_document*)doc, (pdf_page*)page, dev, transform, cookie);
}

pdf_document *
pdf_open_document_with_stream(fz_stream *file)
{
	pdf_document *doc = pdf_open_document_no_run_with_stream(file);
	doc->super.run_page = pdf_run_page_shim;
	return doc;
}

pdf_document *
pdf_open_document(fz_context *ctx, const char *filename)
{
	pdf_document *doc = pdf_open_document_no_run(ctx, filename);
	doc->super.run_page = pdf_run_page_shim;
	return doc;
}