cpdf-source/cpdfimage.mli

28 lines
1.1 KiB
OCaml
Raw Normal View History

2022-01-13 16:35:03 +00:00
(** Images *)
2023-12-28 16:18:25 +00:00
(** Print info when processing image *)
val debug_image_processing : bool ref
2022-01-13 16:35:03 +00:00
(** Extract images. *)
2023-12-28 15:48:30 +00: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 16:35:03 +00:00
(** Report image resolutions. *)
2021-12-21 15:25:59 +00:00
val image_resolution : Pdf.t -> int list -> float -> (int * string * int * int * float * float) list
2023-11-13 17:55:59 +00:00
(** List images in JSON format *)
val images : Pdf.t -> int list -> Cpdfyojson.Safe.t
val process :
?q:int -> ?qlossless:int -> ?onebppmethod:string ->
length_threshold:int -> percentage_threshold:int -> pixel_threshold:int ->
2023-12-31 11:59:48 +00:00
factor:int -> interpolate:bool ->
path_to_jbig2enc:string -> path_to_convert:string -> Pdf.t -> unit
2023-12-06 12:20:27 +00:00
(**/**)
2023-12-04 17:15:15 +00:00
val image_of_input : (unit -> Pdfio.bytes -> Pdf.pdfobject * (int * Pdf.pdfobject) list) -> Pdfio.input -> Pdf.t
2023-12-04 16:32:12 +00: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