package bimage-io

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type error = [
  1. | Bimage.Error.t
  2. | `File_not_found of string
]
type base_type =
  1. | Unknown
  2. | None
  3. | UInt8
  4. | Int8
  5. | UInt16
  6. | Int16
  7. | UInt32
  8. | Int32
  9. | UInt64
  10. | Int64
  11. | Half
  12. | Float
  13. | Double
  14. | String
  15. | Ptr
module Spec : sig ... end
module Input : sig ... end
module Output : sig ... end
val read : ('a, 'b) Bimage.Type.t -> 'c Bimage.Color.t -> string -> (('a, 'b, 'c) Bimage.Image.t, error) Stdlib.result
val write : string -> ('a, 'b, [< `Rgba | `Rgb | `Gray ]) Bimage.Image.t -> (unit, error) Stdlib.result