summaryrefslogtreecommitdiff
path: root/docs/manual-mutool-show.html
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-04-07 16:18:53 +0200
committerTor Andersson <tor.andersson@artifex.com>2017-04-13 13:52:16 +0200
commitc88941abc6f0fe91a41dc35dcaa1874d4de2c429 (patch)
tree51ff32d773f80219922a0458ec76f401ba21e138 /docs/manual-mutool-show.html
parent9c805cc9f934cd12e89014db8ad70e3191cdaf2d (diff)
downloadmupdf-c88941abc6f0fe91a41dc35dcaa1874d4de2c429.tar.xz
Organize docs into HTML files.
Diffstat (limited to 'docs/manual-mutool-show.html')
-rw-r--r--docs/manual-mutool-show.html76
1 files changed, 76 insertions, 0 deletions
diff --git a/docs/manual-mutool-show.html b/docs/manual-mutool-show.html
new file mode 100644
index 00000000..2b5b1ddf
--- /dev/null
+++ b/docs/manual-mutool-show.html
@@ -0,0 +1,76 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>mutool show</title>
+<link rel="stylesheet" href="style.css" type="text/css">
+<meta name="viewport" content="width=device-width, initial-scale=1">
+</head>
+
+<body>
+
+<header>
+<h1>mutool show</h1>
+</header>
+
+<nav>
+<a href="http://mupdf.com/index.html">ABOUT</a>
+<a href="http://mupdf.com/news.html">NEWS</a>
+<a href="index.html">DOCUMENTATION</a>
+<a href="http://mupdf.com/downloads/">DOWNLOAD</a>
+<a href="http://git.ghostscript.com/?p=mupdf.git;a=summary">SOURCE</a>
+<a href="https://bugs.ghostscript.com/">BUGS</a>
+</nav>
+
+<article>
+
+<p>
+The show command will print the specified objects and streams to
+stdout. Streams are decoded and non-printable characters are
+represented with a period by default.
+
+<pre>
+mutool show [options] file.pdf [object numbers ...]
+</pre>
+
+<p>
+Options:
+
+<dl>
+<dt> -p password
+<dd> Use the specified password if the file is encrypted.
+<dt> -o file
+<dd> Write output to file instead of stdout.
+<dt> -b
+<dd> Print streams as binary data and omit the object header.
+<dt> -e
+<dd> Print streams in their original encoded (or compressed) form.
+</dl>
+
+<p>
+Specify objects by number, or use one of the following special names:
+
+<dl>
+<dt> 'xref' or 'x'
+<dd> Print the cross reference table.
+<dt> 'trailer' or 't'
+<dd> Print the trailer dictionary.
+<dt> 'encrypt' or 'e'
+<dd> Print the encryption dictionary.
+<dt> 'pagetree' or 'p'
+<dd> List the object numbers for every page.
+<dt> 'grep' or 'g'
+<dd> Print all the objects in the file in a compact one-line format
+suitable for piping to grep.
+<dt> 'outline' or 'o'
+<dd> Print the outline (table of contents).
+</dl>
+
+</article>
+
+<footer>
+<a href="http://artifex.com"><img src="artifex-logo.png" align="right"></a>
+Copyright &copy; 2006-2017 Artifex Software Inc.
+</footer>
+
+</body>
+</html>