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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
|
(***********************************************************************)
(* *)
(* 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: oImage.ml,v 1.18 2004/09/24 10:02:53 weis Exp $*)
(* Class interface for Images *)
open Images;;
exception Non_supported_method;;
exception Wrong_image_class;;
type image_class =
| ClassRgb24
| ClassIndex8
| ClassIndex16
| ClassRgba32
| ClassCmyk32;;
class type imgsize = object
method width : int
method height : int
end;;
class type ['a] map = object
inherit imgsize
method unsafe_get : int -> int -> 'a
method unsafe_set : int -> int -> 'a -> unit
method get : int -> int -> 'a
method set : int -> int -> 'a -> unit
method unsafe_access : int -> int -> string * int
end;;
class type oimage = object
inherit imgsize
method infos : info list
method set_infos : info list -> unit
method image_class : image_class
method image : Images.t
method destroy : unit
method dump : string
method save : string -> format option -> save_option list -> unit
method coerce : oimage
end;;
class type rgba32_class = object
inherit oimage
inherit [Color.rgba] map
method sub : int -> int -> int -> int -> rgba32_class
method blit : int -> int -> rgba32_class -> int -> int -> int -> int -> unit
method resize : (float -> unit) option -> int -> int -> rgba32_class
end;;
(* Implementation *)
class virtual oimage_impl = object (self)
method virtual image_class : image_class
method virtual image : Images.t
method virtual width : int
method virtual height : int
method virtual infos : info list
method virtual set_infos : info list -> unit
method virtual destroy : unit
method virtual dump : string
method virtual save : string -> format option -> save_option list -> unit
method coerce =
(self :> < image : _; image_class : _; width : _; height : _;
infos : _; set_infos : _;
destroy : _; dump : _; save : _; coerce : _ >)
end;;
open Rgba32;;
class rgba32_wrapper img = object (self)
inherit oimage_impl
method image_class = ClassRgba32
method image = Images.Rgba32 img
method width = img.width
method height = img.height
method infos = img.infos
method dump = dump img
method set_infos infos = img.infos <- infos
method unsafe_access = unsafe_access img
method unsafe_get = unsafe_get img
method unsafe_set = unsafe_set img
method get = get img
method set = set img
method destroy = destroy img
method sub x y w h = new rgba32_wrapper (sub img x y w h)
method blit sx sy (dst : rgba32_class) =
Images.blit (Rgba32 img) sx sy dst#image
method resize prog nw nh = new rgba32_wrapper (resize prog img nw nh)
method save name format opts = Images.save name format opts (Rgba32 img)
end;;
class rgba32 width height = object
inherit rgba32_wrapper (create width height)
end;;
class rgba32_filled width height init = object
inherit rgba32_wrapper (make width height init)
end;;
class rgba32_with width height data bitmap = object
inherit rgba32_wrapper (create_with width height data bitmap)
end;;
open Rgb24;;
class type rgb24_class = object
inherit oimage
inherit [Color.rgb] map
method sub : int -> int -> int -> int -> rgb24_class
method blit : int -> int -> rgb24_class -> int -> int -> int -> int -> unit
method resize : (float -> unit) option -> int -> int -> rgb24_class
method to_rgba32 : rgba32_class
end;;
class rgb24_wrapper img = object (self)
inherit oimage_impl
method image_class = ClassRgb24
method image = Images.Rgb24 img
method width = img.width
method height = img.height
method infos = img.infos
method dump = dump img
method set_infos infos = img.infos <- infos
method unsafe_access = unsafe_access img
method unsafe_get = unsafe_get img
method unsafe_set = unsafe_set img
method get = get img
method set = set img
method destroy = destroy img
method sub x y w h = new rgb24_wrapper (sub img x y w h)
method blit sx sy (dst : rgb24_class) =
Images.blit (Rgb24 img) sx sy dst#image
method resize prog nw nh = new rgb24_wrapper (resize prog img nw nh)
method save name format opts = Images.save name format opts (Rgb24 img)
method to_rgba32 = new rgba32_wrapper (Rgb24.to_rgba32 img)
end;;
class rgb24 width height = object
inherit rgb24_wrapper (create width height)
end;;
class rgb24_filled width height init = object
inherit rgb24_wrapper (make width height init)
end;;
class rgb24_with width height data bitmap = object
inherit rgb24_wrapper (create_with width height data bitmap)
end;;
open Index8;;
class type index8_class = object
inherit oimage
inherit [Index8.elt] map
inherit OColor.rgbmap
method sub : int -> int -> int -> int -> index8_class
method blit : int -> int -> index8_class -> int -> int -> int -> int -> unit
method get_color : int -> int -> Color.rgb
method unsafe_get_color : int -> int -> Color.rgb
method transparent : Index8.elt
method set_transparent : Index8.elt -> unit
method to_rgb24 : rgb24_class
method to_rgba32 : rgba32_class
end;;
class index8_wrapper img = object (self)
inherit oimage_impl
inherit OColor.rgbmap img.colormap as colormap
method image_class = ClassIndex8
method image = Index8 img
method width = img.width
method height = img.height
method transparent = img.transparent
method infos = img.infos
method dump = dump img
method set_transparent c = img.transparent <- c
method set_infos infos = img.infos <- infos
method unsafe_access = unsafe_access img
method unsafe_get = unsafe_get img
method unsafe_set = unsafe_set img
method get = get img
method set = set img
method get_color x y = self#query_color (self#get x y)
method unsafe_get_color x y = self#query_color (self#unsafe_get x y)
method destroy = destroy img
method sub x y w h = new index8_wrapper (Index8.sub img x y w h)
method blit sx sy (dst : index8_class) =
Images.blit (Index8 img) sx sy dst#image
method save name format opts = Images.save name format opts (Index8 img)
method to_rgb24 = new rgb24_wrapper (Index8.to_rgb24 img)
method to_rgba32 = new rgba32_wrapper (Index8.to_rgba32 img)
end;;
class index8 width height = object
inherit index8_wrapper (create width height)
end;;
class index8_filled width height init = object
inherit index8_wrapper (make width height init)
end;;
class index8_with width height infos cmap trans bitmap = object
inherit index8_wrapper (create_with width height infos cmap trans bitmap)
end;;
open Index16;;
class type index16_class = object
inherit oimage
inherit [Index16.elt] map
inherit OColor.rgbmap
method sub : int -> int -> int -> int -> index8_class
method blit : int -> int -> index8_class -> int -> int -> int -> int -> unit
method get_color : int -> int -> Color.rgb
method unsafe_get_color : int -> int -> Color.rgb
method transparent : Index16.elt
method set_transparent : Index16.elt -> unit
method to_rgb24 : rgb24_class
method to_rgba32 : rgba32_class
end;;
class index16_wrapper img = object (self)
inherit oimage_impl
inherit OColor.rgbmap img.colormap as colormap
method image_class = ClassIndex16
method image = Index16 img
method width = img.width
method height = img.height
method transparent = img.transparent
method infos = img.infos
method dump = dump img
method set_transparent c = img.transparent <- c
method set_infos infos = img.infos <- infos
method unsafe_access = unsafe_access img
method unsafe_get = unsafe_get img
method unsafe_set = unsafe_set img
method get = get img
method set = set img
method get_color x y = self#query_color (self#get x y)
method unsafe_get_color x y = self#query_color (self#unsafe_get x y)
method destroy = destroy img
method sub x y w h = new index16_wrapper (Index16.sub img x y w h)
method blit sx sy (dst : index16_class) =
Images.blit (Index16 img) sx sy dst#image
method to_rgb24 = new rgb24_wrapper (Index16.to_rgb24 img)
method to_rgba32 = new rgba32_wrapper (Index16.to_rgba32 img)
method save name format opts = Images.save name format opts (Index16 img)
end;;
class index16 width height = object
inherit index16_wrapper (create width height)
end;;
class index16_filled width height init = object
inherit index16_wrapper (make width height init)
end;;
class index16_with width height infos cmap trans bitmap = object
inherit index16_wrapper (create_with width height infos cmap trans bitmap)
end;;
open Cmyk32;;
class type cmyk32_class = object
inherit oimage
inherit [Color.cmyk] map
method sub : int -> int -> int -> int -> cmyk32_class
method blit : int -> int -> cmyk32_class -> int -> int -> int -> int -> unit
method resize : (float -> unit) option -> int -> int -> cmyk32_class
end;;
class cmyk32_wrapper img = object (self)
inherit oimage_impl
method image_class = ClassCmyk32
method image = Images.Cmyk32 img
method width = img.width
method height = img.height
method infos = img.infos
method dump = dump img
method set_infos infos = img.infos <- infos
method unsafe_access = unsafe_access img
method unsafe_get = unsafe_get img
method unsafe_set = unsafe_set img
method get = get img
method set = set img
method destroy = destroy img
method sub x y w h = new cmyk32_wrapper (sub img x y w h)
method blit sx sy (dst : cmyk32_class) =
Images.blit (Cmyk32 img) sx sy dst#image
method resize prog nw nh = new cmyk32_wrapper (resize prog img nw nh)
method save name format opts = Images.save name format opts (Cmyk32 img)
end;;
class cmyk32 width height = object
inherit cmyk32_wrapper (create width height)
end;;
class cmyk32_filled width height init = object
inherit cmyk32_wrapper (make width height init)
end;;
class cmyk32_with width height data bitmap = object
inherit cmyk32_wrapper (create_with width height data bitmap)
end;;
type tagged =
| Rgb24 of rgb24_class
| Index8 of index8_class
| Index16 of index16_class
| Rgba32 of rgba32_class
| Cmyk32 of cmyk32_class;;
let rgb24 oimage =
if oimage#image_class = ClassRgb24 then (Obj.magic oimage : rgb24_class)
else raise Wrong_image_class;;
let index8 oimage =
if oimage#image_class = ClassIndex8 then (Obj.magic oimage : index8_class)
else raise Wrong_image_class;;
let index16 oimage =
if oimage#image_class = ClassIndex16 then (Obj.magic oimage : index16_class)
else raise Wrong_image_class;;
let rgba32 oimage =
if oimage#image_class = ClassRgba32 then (Obj.magic oimage : rgba32_class)
else raise Wrong_image_class;;
let cmyk32 oimage =
if oimage#image_class = ClassCmyk32 then (Obj.magic oimage : cmyk32_class)
else raise Wrong_image_class;;
let tag img =
match img#image_class with
| ClassRgb24 -> Rgb24 (Obj.magic img : rgb24_class)
| ClassIndex8 -> Index8 (Obj.magic img : index8_class)
| ClassIndex16 -> Index16 (Obj.magic img : index16_class)
| ClassRgba32 -> Rgba32 (Obj.magic img : rgba32_class)
| ClassCmyk32 -> Cmyk32 (Obj.magic img : cmyk32_class);;
let make = function
| Images.Index8 img -> (new index8_wrapper img)#coerce
| Images.Rgb24 img -> (new rgb24_wrapper img)#coerce
| Images.Index16 img -> (new index16_wrapper img)#coerce
| Images.Rgba32 img -> (new rgba32_wrapper img)#coerce
| Images.Cmyk32 img -> (new cmyk32_wrapper img)#coerce;;
let sub img x y w h =
match tag img with
| Rgb24 i -> (i#sub x y w h)#coerce
| Index8 i -> (i#sub x y w h)#coerce
| Index16 i -> (i#sub x y w h)#coerce
| Rgba32 i -> (i#sub x y w h)#coerce
| Cmyk32 i -> (i#sub x y w h)#coerce;;
let load filename load_options = make (Images.load filename load_options);;
|