summaryrefslogtreecommitdiff
path: root/docs/manual-mutool-clean.html
blob: 4c284bca523abe630a50e4ceae2fb2a84959ea68 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<title>mutool clean</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>

<header>
<h1>mutool clean</h1>
</header>

<article>

<p>
The clean command pretty prints and rewrites the syntax of a PDF file.
It can be used to repair broken files, expand compressed streams,
filter out a range of pages, etc.

<pre>
mutool clean [options] input.pdf [output.pdf] [pages]
</pre>

<p>
If no output file is specified, it will write the cleaned PDF to
"out.pdf" in the current directory.

<dl>
<dt> -p password
<dd> Use the specified password if the file is encrypted.

<dt> -g
<dd> Garbage collect objects that have no references from other
objects.  Give the option twice to renumber all objects and
compact the cross reference table.  Give it three times to merge
and reuse duplicate objects.

<dt> -s
<dd> Rewrite content streams.

<dt> -d
<dd> Decompress streams. This will make the output file larger, but
provides easy access for reading and editing the contents with a
text editor.

<dt> -l
<dd> Linearize output. Create a "Web Optimized" output file.

<dt> -i
<dd> Toggle decompression of image streams. Use in conjunction with
-d to leave images compressed.

<dt> -f
<dd> Toggle decompression of font streams. Use in conjunction with -d
to leave fonts compressed.

<dt> -a
<dd> ASCII Hex encode binary streams. Use in conjunction with -d and
-i or -f to ensure that although the images and/or fonts are
compressed, the resulting file can still be viewed and edited
with a text editor.

<dt> -z
<dd> Deflate uncompressed streams.  If combined with -d, any
decompressed streams will be recompressed.  If combined with -a,
the streams will also be hex encoded after compression.

<dt> pages
<dd> Comma separated list of page numbers and ranges to include.

</dl>

</article>

<footer>
<a href="http://www.artifex.com/"><img src="artifex-logo.png" align="right"></a>
Copyright &copy; 2006-2018 Artifex Software Inc.
</footer>

</body>
</html>