#ifndef MUPDF_PDF_OUTPUT_PDF_H1#define MUPDF_PDF_OUTPUT_PDF_H23/*4pdf_new_pdf_device: Create a pdf device. Rendering to the device creates5new pdf content. WARNING: this device is work in progress. It doesn't6currently support all rendering cases.78Note that contents must be a stream (dictionary) to be updated (or9a reference to a stream). Callers should take care to ensure that it10is not an array, and that is it not shared with other objects/pages.11*/12fz_device *pdf_new_pdf_device(fz_context *ctx, pdf_document *doc, pdf_obj *contents, pdf_obj *resources, const fz_matrix *ctm, fz_buffer *buf);1314/*15pdf_write_document: Write out the document to a file with all changes finalised.16*/17void pdf_write_document(fz_context *ctx, pdf_document *doc, char *filename, fz_write_options *opts);1819void pdf_localise_page_resources(fz_context *ctx, pdf_document *doc);2021#endif222324