This commit is contained in:
John Whitington
2022-01-13 16:35:03 +00:00
parent 9e58ad6613
commit 98d37b58a5
9 changed files with 47 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
(** {2 Miscellany} *)
(** Miscellany *)
(** Make all lines in the PDF at least a certain thickness. *)
val thinlines : int list -> float -> Pdf.t -> Pdf.t
@@ -12,14 +12,20 @@ val blacklines : Cpdfaddtext.color -> int list -> Pdf.t -> Pdf.t
(** Make all fills on certain pages black. *)
val blackfills : Cpdfaddtext.color -> int list -> Pdf.t -> Pdf.t
(** Append page content. *)
val append_page_content : string -> bool -> bool -> int list -> Pdf.t -> Pdf.t
(** Remove a dictionary entry. *)
val remove_dict_entry : Pdf.t -> string -> Pdf.pdfobject option -> unit
(** Replace a dictionary entry. *)
val replace_dict_entry : Pdf.t -> string -> Pdf.pdfobject -> Pdf.pdfobject option -> unit
(** Print a dictionary entry. *)
val print_dict_entry : Pdf.t -> string -> unit
(** Remove clipping. *)
val remove_clipping : Pdf.t -> int list -> Pdf.t
(** Remove unused resources. *)
val remove_unused_resources : Pdf.t -> Pdf.t