package mlpost

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

Source file icairost.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
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
(**************************************************************************)
(*                                                                        *)
(*  Copyright (C) Johannes Kanig, Stephane Lescuyer                       *)
(*  Jean-Christophe Filliatre, Romain Bardou and Francois Bobot           *)
(*                                                                        *)
(*  This software is free software; you can redistribute it and/or        *)
(*  modify it under the terms of the GNU Library General Public           *)
(*  License version 2.1, with the special exception on linking            *)
(*  described in file LICENSE.                                            *)
(*                                                                        *)
(*  This software is distributed in the hope that it will be useful,      *)
(*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *)
(*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                  *)
(*                                                                        *)
(**************************************************************************)

open Point_lib
open Format

let create create_surface out_file (draw : Cairo.context -> unit) h w =
  if Defaults.get_debug () then printf "height = %f, width = %f@." h w;
  let s = create_surface out_file ~w ~h in
  let cr = Cairo.create s in
  draw cr;
  if Defaults.get_debug () then printf "Clean up surface_finish ...@.";
  Cairo.Surface.finish s

let rec iter_after f after = function
  | [] -> ()
  | [ a ] -> f a
  | a :: l ->
      f a;
      after a;
      iter_after f after l

let error_replace_by_tex msg_error f arg =
  match msg_error with
  | None -> f arg
  | Some w -> (
      try f arg
      with exn ->
        let msg = sprintf "Error : %s" (Printexc.to_string exn) in
        let msg = Picture.escape_all msg in
        printf "%s@." msg;
        f
          (Types.mkPicture
             (Types.mkPITex
                (sprintf "\\begin{minipage}{%f pt}\n%s\n\\end{minipage}\n" w
                   msg))) )

let min_if_inf = { x = -1.; y = -1. }

let max_if_inf = { x = 1.; y = 1. }

let emit_gen ?msg_error create next_page figs =
  (*Format.printf "Fig : %a@." Print.commandpic (List.hd figs);*)
  let figs = Compute.commandpicl_error (error_replace_by_tex msg_error) figs in
  let min, max = Point_lib.list_min_max Picture_lib.bounding_box figs in
  let min = norm_infinity min_if_inf min in
  let max = norm_infinity max_if_inf max in
  let { x = xmin; y = ymin }, { x = xmax; y = ymax } = (min, max) in

  (*Point_lib.sub min Compute.bbox_offset,
    Point_lib.add max Compute.bbox_offset in*)
  let height = ymax -. ymin in
  let width = xmax -. xmin in
  let not_null f = if f <= 0. then 1. else f in
  let height = not_null height and width = not_null width in
  let figs =
    List.map (fun fig -> Picture_lib.shift fig (-.xmin) (-.ymin)) figs
  in
  (*  try *)
  create
    (fun cr ->
      iter_after (Draw.Picture.draw cr width height) (next_page cr) figs)
    height width

(*  with Cairo.Error e -> invalid_arg  *)
(*     ("Cairost generation error :" ^ (Cairo.string_of_status e)) *)

let dumb_next_page _ _ = assert false

let emit_pdf ?msg_error fname fig =
  emit_gen ?msg_error (create Cairo.PDF.create fname) dumb_next_page [ fig ]

let emit_ps fname fig =
  emit_gen (create Cairo.PS.create fname) dumb_next_page [ fig ]

let emit_svg fname fig =
  emit_gen (create Cairo.SVG.create fname) dumb_next_page [ fig ]

let emit_png fname fig =
  emit_gen
    (fun draw height width ->
      let width = int_of_float (ceil width) in
      let height = int_of_float (ceil height) in
      let surf = Cairo.Image.create Cairo.Image.ARGB32 ~w:width ~h:height in
      let cr = Cairo.create surf in
      draw cr;
      Cairo.PNG.write surf fname)
    dumb_next_page [ fig ]

let emit_cairo cairo (width, height) fig =
  (*Compute.clear (); LookForTeX.clear ();*)
  let fig = Compute.commandpic fig in
  Draw.Picture.draw cairo width height fig

let emit_pdfs fname figs =
  emit_gen (create Cairo.PDF.create fname) (fun cr _ -> Cairo.show_page cr) figs
OCaml

Innovation. Community. Security.