Kitty Graphics Protocol in OCaml
terminal graphics ocaml
1type t = [ `Rgba32 | `Rgb24 | `Png ] 2 3let to_int : t -> int = function 4 | `Rgba32 -> 32 5 | `Rgb24 -> 24 6 | `Png -> 100