2023-07-27 13:05:18 +02:00
|
|
|
(** Show composition of a PDF *)
|
|
|
|
|
|
|
|
(** [show_composition filesize json pdf] prints the composition of a document to
|
2024-03-04 16:16:14 +01:00
|
|
|
Standard Output. *)
|
2023-04-13 17:51:11 +02:00
|
|
|
val show_composition : int -> bool -> Pdf.t -> unit
|
2023-08-31 15:52:24 +02:00
|
|
|
|
2024-03-04 16:16:14 +01:00
|
|
|
(** [show_composition_json_blob filesize json pdf] returns the composition of a
|
|
|
|
document in JSON format. *)
|
2023-08-31 15:52:24 +02:00
|
|
|
val show_composition_json_blob : int -> Pdf.t -> Pdfio.bytes
|