val check_header : string -> Image.header
val load : string -> Image.load_option list -> Image.t
val save : string -> Image.save_option list -> Image.t -> unit;;
Save a full-color image in tiff format file.
Raises Invalid_argument if the image is not a full-color image.
Scanline based I/O functions
type colormodel = RGB | CMYK
type in_handle
val open_in : string -> int * int * float * colormodel * in_handle
val read_scanline : in_handle -> string -> int -> unit
val close_in : in_handle -> unit
type out_handle
val open_out : string -> int -> int -> float -> out_handle
val write_scanline : out_handle -> string -> int -> unit
val close_out : out_handle -> unit
Go to the first, previous, next, last section, table of contents.