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

13 lines
358 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
let new_img ~width ~height =
let r_channel, g_channel, b_channel =
let kind = Bigarray.int8_unsigned
and layout = Bigarray.c_layout
in
(Bigarray.Array2.create kind layout width height,
Bigarray.Array2.create kind layout width height,
Bigarray.Array2.create kind layout width height)
in
(r_channel,
g_channel,
b_channel)