diff options
author | Robin Watts <robin.watts@artifex.com> | 2014-03-19 19:04:50 +0000 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2014-03-19 19:04:50 +0000 |
commit | e4d36ce68e0467ac4702f717386934a44970f4e5 (patch) | |
tree | 758a9999434f03a4607d1f23e43d9a58828b6444 /source/pdf/pdf-run.c | |
parent | 441954b6fb378e3af72500653be5636c7ade29ee (diff) | |
download | mupdf-e4d36ce68e0467ac4702f717386934a44970f4e5.tar.xz |
Add routine to clean pdf content streams for pages.
New routine to filter the content streams for pages, xobjects,
type3 charprocs, patterns etc. The filtered streams are guaranteed
to be properly matched with q/Q's, and to not have changed the top
level ctm. Additionally we remove (some) repeated settings of
colors etc. This filtering can be extended to be smarter later.
The idea of this is to both repair after editing, and to leave the
streams in a form that can be easily appended to.
This is preparatory to work on Bates numbering and Watermarking.
Currently the streams produced are uncompressed.
Diffstat (limited to 'source/pdf/pdf-run.c')
-rw-r--r-- | source/pdf/pdf-run.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-run.c b/source/pdf/pdf-run.c index a77dd50e..d52d8282 100644 --- a/source/pdf/pdf-run.c +++ b/source/pdf/pdf-run.c @@ -28,7 +28,7 @@ static void pdf_run_page_contents_with_usage(pdf_document *doc, pdf_page *page, pdf_process_run(&process, dev, &local_ctm, event, NULL, 0); - pdf_process_page_contents(doc, page, &process, cookie); + pdf_process_stream_object(doc, page->contents, &process, page->resources, cookie); if (page->transparency) fz_end_group(dev); |