1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
(***********************************************************************)
(* *)
(* Objective Caml *)
(* *)
(* Franois Pessaux, projet Cristal, INRIA Rocquencourt *)
(* Pierre Weis, projet Cristal, INRIA Rocquencourt *)
(* Jun Furuse, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1999-2004, *)
(* Institut National de Recherche en Informatique et en Automatique. *)
(* Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id: oColor.mli,v 1.7 2004/09/24 14:27:27 weis Exp $*)
(** Class interface for Color *)
class rgbmap :
Color.rgb Color.map ->
object
method add_color : Color.rgb -> int
method add_colors : Color.rgb list -> int list
method colormap : Color.rgb Color.map
method find_exact : Color.rgb -> int
method find_nearest : Color.rgb -> int
method map : Color.rgb array
method max : int
method query_color : int -> Color.rgb
method set_map : Color.rgb array -> unit
method set_max : int -> unit
method size : int
end;;
class rgbamap :
Color.rgba Color.map ->
object
method add_color : Color.rgba -> int
method add_colors : Color.rgba list -> int list
method colormap : Color.rgba Color.map
method find_exact : Color.rgba -> int
method find_nearest : Color.rgba -> int
method map : Color.rgba array
method max : int
method query_color : int -> Color.rgba
method set_map : Color.rgba array -> unit
method set_max : int -> unit
method size : int
end;;
class cmykmap :
Color.cmyk Color.map ->
object
method add_color : Color.cmyk -> int
method add_colors : Color.cmyk list -> int list
method colormap : Color.cmyk Color.map
method find_exact : Color.cmyk -> int
method find_nearest : Color.cmyk -> int
method map : Color.cmyk array
method max : int
method query_color : int -> Color.cmyk
method set_map : Color.cmyk array -> unit
method set_max : int -> unit
method size : int
end;;
|