mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2025-02-08 16:08:43 +01:00
9 lines
212 B
OCaml
9 lines
212 B
OCaml
type t =
|
|
{width : int;
|
|
height : int;
|
|
idat : Pdfio.bytes}
|
|
|
|
(* Read a non-interlaced, non-transparent 24 bit PNG for inclusion in a PDF
|
|
file. Raises BadPNG on failure. *)
|
|
val read_png : Pdfio.input -> t
|