Remove misleading description of JSON string format
This commit is contained in:
parent
bdb855df06
commit
900f9c8acd
|
@ -23,12 +23,7 @@ Objects 1..n: The PDF's objects.
|
|||
o Names are written as {"N": "/Pages"}
|
||||
o Indirect references are integers
|
||||
o Streams are {"S": [dict, data]}
|
||||
o Strings are converted from UTF16BE/PDFDocEncoding to UTF8 before being
|
||||
encoded in JSON. When they are read back the process is JSON encoded --> UTF8
|
||||
--> UTF16BE/PDFDocEncoding. This process is fully reversible: it is to allow
|
||||
easier editing of strings. This does not happen to strings within text
|
||||
operators in parsed content streams, nor to /ID values in the
|
||||
trailerdictionary, since neither is UTF16BE/PdfDocEncoding to begin with.
|
||||
o Strings are converted into JSON strings in a way which is fully reversible.
|
||||
|
||||
There are two subformats: parsing content streams or not. Hello World in CPDF
|
||||
JSON without parsing content streams:
|
||||
|
|
BIN
cpdfmanual.pdf
BIN
cpdfmanual.pdf
Binary file not shown.
|
@ -2414,13 +2414,13 @@ annotations on the selected pages to standard output. Each annotation is precede
|
|||
More information can be obtained by listing annotations in JSON format:
|
||||
|
||||
\begin{framed}
|
||||
\small\verb!cpdf -list-annotations in.pdf > annots.txt!
|
||||
\small\verb!cpdf -list-annotations-json in.pdf > annots.json!
|
||||
|
||||
\vspace{2.5mm}
|
||||
\noindent Print annotations from \texttt{in.pdf}, redirecting output to \texttt{annots.txt}.
|
||||
\noindent Print annotations from \texttt{in.pdf} in JSON format, redirecting output to \texttt{annots.json}.
|
||||
\end{framed}
|
||||
|
||||
This produces an array of (page number, CPDFJSON) pairs giving the PDF structure of each annotation. Destination pages for page links will have page numbers in place of internal PDF page links, and certain indirect objects are made direct but the content is otherwise unaltered. Here is an example entry for an annotation on page 10:
|
||||
This produces an array of (page number, annotation) pairs giving the PDF structure of each annotation. Destination pages for page links will have page numbers in place of internal PDF page links, and certain indirect objects are made direct but the content is otherwise unaltered. Here is an example entry for an annotation on page 10:
|
||||
|
||||
{\small\begin{verbatim}
|
||||
[
|
||||
|
@ -3171,11 +3171,7 @@ number, and flags used when writing (which may be required when reading):
|
|||
\item Names are written as \texttt{\{"N":\ "/Pages"\}}
|
||||
\item Indirect references are integers
|
||||
\item Streams are \texttt{\{"S":\ [dict, data]\}}
|
||||
\item Strings are converted from UTF16BE/PDFDocEncoding to UTF8 before being
|
||||
encoded in JSON. This process is fully reversible: it is to allow
|
||||
easier editing of strings. This does not happen to strings within text
|
||||
operators in parsed content streams, nor to /ID values in the
|
||||
trailer dictionary, since neither is UTF16BE/PDFDocEncoding to begin with.
|
||||
\item Strings are converted to JSON string format in a way which, when reversed, results in the original string.
|
||||
\end{itemize}
|
||||
|
||||
\noindent Here is an example of the output for a small PDF:
|
||||
|
|
Loading…
Reference in New Issue