cpdf-source/cpdfimage.mli

33 lines
1.5 KiB
OCaml
Raw Normal View History

2022-01-13 17:35:03 +01:00
(** Images *)
2023-12-28 17:18:25 +01:00
(** Print info when processing image *)
val debug_image_processing : bool ref
2022-01-13 17:35:03 +01:00
(** Extract images. *)
2023-12-28 16:48:30 +01:00
val extract_images :
?raw:bool -> ?path_to_p2p:string -> ?path_to_im:string ->
Cpdfmetadata.encoding -> bool -> bool -> Pdf.t -> int list -> string -> unit
2022-01-13 17:35:03 +01:00
(** Report image resolutions. *)
val image_resolution : Pdf.t -> int list -> float -> (int * string * int * int * float * float * int) list
2024-03-04 16:16:14 +01:00
(** Report image resolution data in JSON format *)
2024-02-07 15:42:38 +01:00
val image_resolution_json : Pdf.t -> int list -> float -> Pdfio.bytes
2023-11-13 18:55:59 +01:00
(** List images in JSON format *)
val images : Pdf.t -> int list -> Cpdfyojson.Safe.t
2024-07-24 15:54:12 +02:00
(** Reprocess images. See manual for details. *)
val process :
q:float -> qlossless:float -> onebppmethod:string -> jbig2_lossy_threshold:float ->
length_threshold:int -> percentage_threshold:float -> pixel_threshold:int ->
dpi_threshold:float -> factor:float -> interpolate:bool ->
2024-01-04 12:33:17 +01:00
path_to_jbig2enc:string -> path_to_convert:string -> int list -> Pdf.t -> unit
2023-12-06 13:20:27 +01:00
(**/**)
2024-09-30 19:26:39 +02:00
val image_of_input : ?subformat:Cpdfua.subformat -> ?title:string -> process_struct_tree:bool -> (unit -> Pdfio.bytes -> Pdf.pdfobject * (int * Pdf.pdfobject) list) -> Pdfio.input -> Pdf.t
2023-12-04 17:32:12 +01:00
val obj_of_jpeg_data : Pdfio.bytes -> Pdf.pdfobject * (int * Pdf.pdfobject) list
val obj_of_png_data : Pdfio.bytes -> Pdf.pdfobject * (int * Pdf.pdfobject) list
val obj_of_jbig2_data : ?global:Pdfio.bytes -> Pdfio.bytes -> Pdf.pdfobject * (int * Pdf.pdfobject) list
2024-03-22 14:57:04 +01:00
val obj_of_jpeg2000_data : Pdfio.bytes -> Pdf.pdfobject * (int * Pdf.pdfobject) list