more
This commit is contained in:
parent
883dba9bcc
commit
f7a4b91d86
17
cpdfannot.ml
17
cpdfannot.ml
|
@ -149,13 +149,24 @@ let list_annotations_json range pdf =
|
||||||
let extra =
|
let extra =
|
||||||
map
|
map
|
||||||
(fun n ->
|
(fun n ->
|
||||||
`List [`Int ~-n; Cpdfjson.json_of_object ~utf8:true ~clean_strings:true pdf (fun _ -> ()) ~no_stream_data:false ~parse_content:false (Pdf.lookup_obj pdf n)])
|
`List
|
||||||
(setify (flatten (map (Pdf.objects_referenced [] [] pdf) extra)))
|
[`Int ~-n;
|
||||||
|
Cpdfjson.json_of_object ~utf8:true ~clean_strings:true pdf (fun _ -> ())
|
||||||
|
~no_stream_data:false ~parse_content:false (Pdf.lookup_obj pdf n)])
|
||||||
|
(setify
|
||||||
|
(flatten
|
||||||
|
(map
|
||||||
|
(fun x ->
|
||||||
|
let r = Pdf.objects_referenced [] [] pdf x in
|
||||||
|
(*Printf.printf "%i extra for annot %s\n" (length r)
|
||||||
|
(Pdfwrite.string_of_pdf x);*) r)
|
||||||
|
extra)))
|
||||||
in
|
in
|
||||||
let header =
|
let header =
|
||||||
`List
|
`List
|
||||||
[`Int 0;
|
[`Int 0;
|
||||||
Cpdfjson.json_of_object ~utf8:true ~clean_strings:true pdf (fun _ -> ()) ~no_stream_data:false ~parse_content:false
|
Cpdfjson.json_of_object ~utf8:true ~clean_strings:true pdf (fun _ -> ())
|
||||||
|
~no_stream_data:false ~parse_content:false
|
||||||
(Pdf.Dictionary ["/CPDFJSONannotformatversion", Pdf.Integer 1])]
|
(Pdf.Dictionary ["/CPDFJSONannotformatversion", Pdf.Integer 1])]
|
||||||
in
|
in
|
||||||
let json = `List ([header] @ json @ extra) in
|
let json = `List ([header] @ json @ extra) in
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
%Document -draw and friends
|
%Document -draw and friends
|
||||||
%Document -png -jpeg
|
%Document -png -jpeg
|
||||||
%Document -list-annotations[-json] now obey page range
|
%Document -list-annotations[-json] now obey page range
|
||||||
%Document round-tripping of annotations, supersede -copy-annotations
|
%Document round-tripping of annotations, supersede -copy-annotations. Mark -clean-strings as deprecated since can fail to round-trip binary strings which begin with a BOM.
|
||||||
\documentclass{book}
|
\documentclass{book}
|
||||||
% Edit here to produce cpdfmanual.pdf, cpdflibmanual.pdf, pycpdfmanual.pdf,
|
% Edit here to produce cpdfmanual.pdf, cpdflibmanual.pdf, pycpdfmanual.pdf,
|
||||||
% dotnetcpdflibmanual.pdf, jcpdflibmanual.pdf jscpdflibmanual.pdf etc.
|
% dotnetcpdflibmanual.pdf, jcpdflibmanual.pdf jscpdflibmanual.pdf etc.
|
||||||
|
|
Loading…
Reference in New Issue