RosettaCodeData/Task/Bitmap/OCaml/bitmap-7.ocaml

5 lines
153 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
let get_dims ~img:(_, r_channel, _, _) =
let width = Bigarray.Array2.dim1 r_channel
and height = Bigarray.Array2.dim2 r_channel in
(width, height)