/usr/include/mupdf/pdf/output-pdf.h is in libmupdf-dev 1.7a-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #ifndef MUPDF_PDF_OUTPUT_PDF_H
#define MUPDF_PDF_OUTPUT_PDF_H
/*
pdf_new_pdf_device: Create a pdf device. Rendering to the device creates
new pdf content. WARNING: this device is work in progress. It doesn't
currently support all rendering cases.
Note that contents must be a stream (dictionary) to be updated (or
a reference to a stream). Callers should take care to ensure that it
is not an array, and that is it not shared with other objects/pages.
*/
fz_device *pdf_new_pdf_device(fz_context *ctx, pdf_document *doc, pdf_obj *contents, pdf_obj *resources, const fz_matrix *ctm, fz_buffer *buf);
/*
pdf_write_document: Write out the document to a file with all changes finalised.
*/
void pdf_write_document(fz_context *ctx, pdf_document *doc, char *filename, fz_write_options *opts);
void pdf_localise_page_resources(fz_context *ctx, pdf_document *doc);
#endif
|