]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MLIB/PDF/Marco/medidas.php
Bug Fix en MLIB_PDF_Tabla. Faltaba inicializar una variable, lo que hacia fallar...
[mecon/meconlib.git] / lib / MLIB / PDF / Marco / medidas.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 foldmethod=marker:
2 -------------------------------------------------------------------------------
3                                     mlib
4 -------------------------------------------------------------------------------
5 This file is part of mlib.
6
7 mlib is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2 of the License, or (at your option)
10 any later version.
11
12 mlib is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15  
16 You should have received a copy of the GNU General Public License; if not,
17 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 Boston, MA  02111-1307  USA
19 -------------------------------------------------------------------------------
20 Creado: lun oct 27 12:17:32 ART 2003
21 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
22 -------------------------------------------------------------------------------
23 $Id$
24 -----------------------------------------------------------------------------*/
25
26 /**
27  * Este archivo contiene las coordenadas y estilos de los diferentes componentes
28  * de MLIB_PDF_Marco. Las cordenadas Arrancan en (0,0)
29
30     Y ^
31       |
32    Yn +------------+  
33       |            |
34       |            |
35       |            |
36       |            |
37       |            |
38       |            |
39       |            |
40     0 +------------+----->
41       0            Xn    X
42  */
43
44
45 /**
46  * Medidas para cada formato de pagina.
47  */
48 return array (
49         // A4 {{{
50         'a4' => array (
51                 //Portrait {{{ 
52                 'portrait' => array (
53                         //Titulos {{{
54                         'titulo' => array (
55                                     'Y'      => 630,
56                                     'font'   => 'Helvetica-Bold',
57                                     'height' => 16,
58                                 ),
59                         'subtitulo' => array (
60                                     'Y'      => 615,
61                                     'font'   => 'Helvetica',
62                                     'height' => 13
63                                 ),
64                         //}}}
65                     ),
66                 //}}}
67                 //LandScape {{{
68                 'landscape' => array (
69                         //Titulos {{{
70                         'titulo' => array (
71                                     'Y'      => 460,
72                                     'font'   => 'Helvetica-Bold',
73                                     'height' => 16,
74                                 ),
75                         'subtitulo' => array (
76                                     'Y'      => 445,
77                                     'font'   => 'Helvetica',
78                                     'height' => 13,
79                                 ),
80                         //}}}
81                     ), 
82                 //}}}
83             ),
84         //}}}
85         // OFICIO {{{
86         'legal' => array (
87                 //Portrait {{{ 
88                 'portrait' => array (
89                         //Titulos {{{
90                         'titulo' => array (
91                                     'Y'      => 794,
92                                     'font'   => 'Helvetica-Bold',
93                                     'height' => 16,
94                                 ),
95                         'subtitulo' => array (
96                                     'Y'      => 779,
97                                     'font'   => 'Helvetica',
98                                     'height' => 13
99                                 ),
100                         //}}}
101                     ),
102                 //}}}
103                 //LandScape {{{
104                 'landscape' => array (
105                         //Titulos {{{
106                         'titulo' => array (
107                                     'Y'      => 470,
108                                     'font'   => 'Helvetica-Bold',
109                                     'height' => 16,
110                                 ),
111                         'subtitulo' => array (
112                                     'Y'      => 455,
113                                     'font'   => 'Helvetica',
114                                     'height' => 13,
115                                 ),
116                         //}}}
117                     ), 
118                 //}}}
119             ),
120         //}}}
121         );
122
123 ?>