package camlimages

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file camlimages.ml

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
# 1 "camlimages.cppo.ml"
(***********************************************************************)
(*                                                                     *)
(*                           Objective Caml                            *)
(*                                                                     *)
(*            François 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: camlimages.ml.in,v 1.3.2.1 2010/05/13 13:14:47 furuse Exp $ *)

  
# 19 "camlimages.cppo.ml"
let version = "5.0.0"


# 23 "camlimages.cppo.ml"
(* Supported libraries *)
let lib_gif      = 
# 24 "camlimages.cppo.ml"
                    match  "false"  with "true" -> true | "false" -> false | _ -> assert false 
# 25 "camlimages.cppo.ml"
let lib_png      = 
# 25 "camlimages.cppo.ml"
                    match  "true"  with "true" -> true | "false" -> false | _ -> assert false 
# 26 "camlimages.cppo.ml"
let lib_jpeg     = 
# 26 "camlimages.cppo.ml"
                    match  "true"  with "true" -> true | "false" -> false | _ -> assert false 
# 27 "camlimages.cppo.ml"
let lib_tiff     = 
# 27 "camlimages.cppo.ml"
                    match  "true"  with "true" -> true | "false" -> false | _ -> assert false 
# 28 "camlimages.cppo.ml"
let lib_freetype = 
# 28 "camlimages.cppo.ml"
                    match  "true"  with "true" -> true | "false" -> false | _ -> assert false 
# 29 "camlimages.cppo.ml"
let lib_ps       = 
# 29 "camlimages.cppo.ml"
                    match  "false"  with "true" -> true | "false" -> false | _ -> assert false 
# 30 "camlimages.cppo.ml"
let lib_xpm      = 
# 30 "camlimages.cppo.ml"
                    match  "false"  with "true" -> true | "false" -> false | _ -> assert false 
# 31 "camlimages.cppo.ml"
let lib_exif     = 
# 31 "camlimages.cppo.ml"
                    match  "false"  with "true" -> true | "false" -> false | _ -> assert false 

# 33 "camlimages.cppo.ml"
(* External files *)
# 35 "camlimages.cppo.ml"
let path_rgb_txt = Some 
# 35 "camlimages.cppo.ml"
                         "/etc/X11/rgb.txt" 
# 42 "camlimages.cppo.ml"
let path_gs = None

# 45 "camlimages.cppo.ml"
(* They are written in ML, so always supported *)
let lib_ppm = true
let lib_bmp = true
let lib_xvthumb = true

(* Word size, used for the bitmap swapping memory management *)
let word_size = Sys.word_size / 8
OCaml

Innovation. Community. Security.