Image.Generic
Operations on images in generic formats (many formats are supported).
Since the module is very generic, many of the functions are not implemented for particular formats. This exception is raised when it is the case.
module Pixel : sig ... end
Generic pixels.
type data =
(int, Stdlib.Bigarray.int8_unsigned_elt, Stdlib.Bigarray.c_layout)
Stdlib.Bigarray.Array1.t
Data contents of an image.
val width : t -> int
Width of an image.
val height : t -> int
Height of an image.
val pixel_format : t -> Pixel.format
Pixel format of an image.
val make_rgb : Pixel.rgb_format -> ?stride:int -> int -> int -> data -> t
Create a new image of RGB format.
val blank : t -> unit
val convert :
?proportional:bool ->
?scale_kind:RGBA32.Scale.kind ->
t ->
t ->
unit
Convert a generic image from a format to another.