Reemplazo para dompdf: tcpdf.
[ecomupi.git] / include / tcpdf / config / tcpdf_config.php
blob28d40db2f9b00298b6a10e020c31d47d2c503130
1 <?php
2 //============================================================+
3 // File name : tcpdf_config.php
4 // Begin : 2004-06-11
5 // Last Update : 2009-03-18
6 //
7 // Description : Configuration file for TCPDF.
8 //
9 // Author: Nicola Asuni
11 // (c) Copyright:
12 // Nicola Asuni
13 // Tecnick.com s.r.l.
14 // Via Della Pace, 11
15 // 09044 Quartucciu (CA)
16 // ITALY
17 // www.tecnick.com
18 // info@tecnick.com
19 //============================================================+
21 /**
22 * Configuration file for TCPDF.
23 * @author Nicola Asuni
24 * @copyright 2004-2008 Nicola Asuni - Tecnick.com S.r.l (www.tecnick.com) Via Della Pace, 11 - 09044 - Quartucciu (CA) - ITALY - www.tecnick.com - info@tecnick.com
25 * @package com.tecnick.tcpdf
26 * @version 4.0.014
27 * @link http://tcpdf.sourceforge.net
28 * @license http://www.gnu.org/copyleft/lesser.html LGPL
29 * @since 2004-10-27
32 // If you define the constant K_TCPDF_EXTERNAL_CONFIG, the following settings will be ignored.
34 if (!defined('K_TCPDF_EXTERNAL_CONFIG')) {
36 // DOCUMENT_ROOT fix for IIS Webserver
37 if ((!isset($_SERVER['DOCUMENT_ROOT'])) OR (empty($_SERVER['DOCUMENT_ROOT']))) {
38 if(isset($_SERVER['SCRIPT_FILENAME'])) {
39 $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF'])));
40 } elseif(isset($_SERVER['PATH_TRANSLATED'])) {
41 $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF'])));
42 } else {
43 // define here your DOCUMENT_ROOT path if the previous fails
44 $_SERVER['DOCUMENT_ROOT'] = '/var/www';
48 // Automatic calculation for the following K_PATH_MAIN constant
49 $k_path_main = str_replace( '\\', '/', realpath(substr(dirname(__FILE__), 0, 0-strlen('config'))));
50 if (substr($k_path_main, -1) != '/') {
51 $k_path_main .= '/';
54 /**
55 * Installation path (/var/www/tcpdf/).
56 * By default it is automatically calculated but you can also set it as a fixed string to improve performances.
58 define ('K_PATH_MAIN', $k_path_main);
60 // Automatic calculation for the following K_PATH_URL constant
61 if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) {
62 if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND strtolower($_SERVER['HTTPS'])!='off') {
63 $k_path_url = 'https://';
64 } else {
65 $k_path_url = 'http://';
67 $k_path_url .= $_SERVER['HTTP_HOST'];
68 $k_path_url .= str_replace( '\\', '/', substr($_SERVER['PHP_SELF'], 0, -24));
71 /**
72 * URL path to tcpdf installation folder (http://localhost/tcpdf/).
73 * By default it is automatically calculated but you can also set it as a fixed string to improve performances.
75 define ('K_PATH_URL', $k_path_url);
77 /**
78 * path for PDF fonts
79 * use K_PATH_MAIN.'fonts/old/' for old non-UTF8 fonts
81 define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
83 /**
84 * cache directory for temporary files (full path)
86 define ('K_PATH_CACHE', K_PATH_MAIN.'cache/');
88 /**
89 * cache directory for temporary files (url path)
91 define ('K_PATH_URL_CACHE', K_PATH_URL.'cache/');
93 /**
94 *images directory
96 define ('K_PATH_IMAGES', K_PATH_MAIN.'images/');
98 /**
99 * blank image
101 define ('K_BLANK_IMAGE', K_PATH_IMAGES.'_blank.png');
104 * page format
106 define ('PDF_PAGE_FORMAT', 'A4');
109 * page orientation (P=portrait, L=landscape)
111 define ('PDF_PAGE_ORIENTATION', 'P');
114 * document creator
116 define ('PDF_CREATOR', 'TCPDF');
119 * document author
121 define ('PDF_AUTHOR', 'TCPDF');
124 * header title
126 define ('PDF_HEADER_TITLE', 'TCPDF Example');
129 * header description string
131 define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org");
134 * image logo
136 define ('PDF_HEADER_LOGO', 'tcpdf_logo.jpg');
139 * header logo image width [mm]
141 define ('PDF_HEADER_LOGO_WIDTH', 30);
144 * document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch]
146 define ('PDF_UNIT', 'mm');
149 * header margin
151 define ('PDF_MARGIN_HEADER', 5);
154 * footer margin
156 define ('PDF_MARGIN_FOOTER', 10);
159 * top margin
161 define ('PDF_MARGIN_TOP', 27);
164 * bottom margin
166 define ('PDF_MARGIN_BOTTOM', 25);
169 * left margin
171 define ('PDF_MARGIN_LEFT', 15);
174 * right margin
176 define ('PDF_MARGIN_RIGHT', 15);
179 * default main font name
181 define ('PDF_FONT_NAME_MAIN', 'helvetica');
184 * default main font size
186 define ('PDF_FONT_SIZE_MAIN', 10);
189 * default data font name
191 define ('PDF_FONT_NAME_DATA', 'helvetica');
194 * default data font size
196 define ('PDF_FONT_SIZE_DATA', 8);
199 * default monospaced font name
201 define ('PDF_FONT_MONOSPACED', 'courier');
204 * Ratio used to scale the images
206 define ('PDF_IMAGE_SCALE_RATIO', 4);
209 * magnification factor for titles
211 define('HEAD_MAGNIFICATION', 1.1);
214 * height of cell repect font height
216 define('K_CELL_HEIGHT_RATIO', 1.25);
219 * title magnification respect main font size
221 define('K_TITLE_MAGNIFICATION', 1.3);
224 * reduction factor for small font
226 define('K_SMALL_RATIO', 2/3);
229 //============================================================+
230 // END OF FILE
231 //============================================================+