Add JSON annotations function for cpdflib

This commit is contained in:
John Whitington
2022-01-16 16:30:36 +00:00
parent 4d87a90bdf
commit 844b58f78b
2 changed files with 10 additions and 0 deletions

View File

@@ -94,6 +94,13 @@ let get_annotations encoding pdf =
pages
(ilist 1 (length pages)))
let get_annotations_json pdf =
let module J = Cpdfyojson.Safe in
let pages = Pdfpage.pages_of_pagetree pdf in
let pagenums = indx pages in
let json = `List (flatten (map2 (annotations_json_page pdf) pages pagenums)) in
Pdfio.bytes_of_string (J.to_string json)
(* Equalise the page lengths of two PDFs by chopping or extending the first one.
*)
let equalise_lengths a b =