tcpdf_autoconfig.php 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <?php
  2. //============================================================+
  3. // File name : tcpdf_autoconfig.php
  4. // Version : 1.0.000
  5. // Begin : 2013-05-16
  6. // Last Update : 2013-05-16
  7. // Authors : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
  8. // License : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
  9. // -------------------------------------------------------------------
  10. // Copyright (C) 2011-2013 Nicola Asuni - Tecnick.com LTD
  11. //
  12. // This file is part of TCPDF software library.
  13. //
  14. // TCPDF is free software: you can redistribute it and/or modify it
  15. // under the terms of the GNU Lesser General Public License as
  16. // published by the Free Software Foundation, either version 3 of the
  17. // License, or (at your option) any later version.
  18. //
  19. // TCPDF is distributed in the hope that it will be useful, but
  20. // WITHOUT ANY WARRANTY; without even the implied warranty of
  21. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  22. // See the GNU Lesser General Public License for more details.
  23. //
  24. // You should have received a copy of the License
  25. // along with TCPDF. If not, see
  26. // <http://www.tecnick.com/pagefiles/tcpdf/LICENSE.TXT>.
  27. //
  28. // See LICENSE.TXT file for more information.
  29. // -------------------------------------------------------------------
  30. //
  31. // Description : Try to automatically configure some TCPDF
  32. // constants if not defined.
  33. //
  34. //============================================================+
  35. /**
  36. * @file
  37. * Try to automatically configure some TCPDF constants if not defined.
  38. * @package com.tecnick.tcpdf
  39. * @version 1.0.000
  40. */
  41. // DOCUMENT_ROOT fix for IIS Webserver
  42. if ((!isset($_SERVER['DOCUMENT_ROOT'])) OR (empty($_SERVER['DOCUMENT_ROOT']))) {
  43. if(isset($_SERVER['SCRIPT_FILENAME'])) {
  44. $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr($_SERVER['SCRIPT_FILENAME'], 0, 0-strlen($_SERVER['PHP_SELF'])));
  45. } elseif(isset($_SERVER['PATH_TRANSLATED'])) {
  46. $_SERVER['DOCUMENT_ROOT'] = str_replace( '\\', '/', substr(str_replace('\\\\', '\\', $_SERVER['PATH_TRANSLATED']), 0, 0-strlen($_SERVER['PHP_SELF'])));
  47. } else {
  48. // define here your DOCUMENT_ROOT path if the previous fails (e.g. '/var/www')
  49. $_SERVER['DOCUMENT_ROOT'] = '/';
  50. }
  51. }
  52. $_SERVER['DOCUMENT_ROOT'] = str_replace('//', '/', $_SERVER['DOCUMENT_ROOT']);
  53. if (substr($_SERVER['DOCUMENT_ROOT'], -1) != '/') {
  54. $_SERVER['DOCUMENT_ROOT'] .= '/';
  55. }
  56. // Load main configuration file only if the K_TCPDF_EXTERNAL_CONFIG constant is set to false.
  57. if (!defined('K_TCPDF_EXTERNAL_CONFIG') OR !K_TCPDF_EXTERNAL_CONFIG) {
  58. // define a list of default config files in order of priority
  59. $tcpdf_config_files = array(dirname(__FILE__).'/config/tcpdf_config.php', '/etc/php-tcpdf/tcpdf_config.php', '/etc/tcpdf/tcpdf_config.php', '/etc/tcpdf_config.php');
  60. foreach ($tcpdf_config_files as $tcpdf_config) {
  61. if (@file_exists($tcpdf_config) AND is_readable($tcpdf_config)) {
  62. require_once($tcpdf_config);
  63. break;
  64. }
  65. }
  66. }
  67. if (!defined('K_PATH_MAIN')) {
  68. define ('K_PATH_MAIN', dirname(__FILE__).'/');
  69. }
  70. if (!defined('K_PATH_FONTS')) {
  71. define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
  72. }
  73. if (!defined('K_PATH_URL')) {
  74. $k_path_url = K_PATH_MAIN; // default value for console mode
  75. if (isset($_SERVER['HTTP_HOST']) AND (!empty($_SERVER['HTTP_HOST']))) {
  76. if(isset($_SERVER['HTTPS']) AND (!empty($_SERVER['HTTPS'])) AND (strtolower($_SERVER['HTTPS']) != 'off')) {
  77. $k_path_url = 'https://';
  78. } else {
  79. $k_path_url = 'http://';
  80. }
  81. $k_path_url .= $_SERVER['HTTP_HOST'];
  82. $k_path_url .= str_replace( '\\', '/', substr(K_PATH_MAIN, (strlen($_SERVER['DOCUMENT_ROOT']) - 1)));
  83. }
  84. define ('K_PATH_URL', $k_path_url);
  85. }
  86. if (!defined('K_PATH_IMAGES')) {
  87. $tcpdf_images_dirs = array(K_PATH_MAIN.'examples/images/', K_PATH_MAIN.'images/', '/usr/share/doc/php-tcpdf/examples/images/', '/usr/share/doc/tcpdf/examples/images/', '/usr/share/doc/php/tcpdf/examples/images/', '/var/www/tcpdf/images/', '/var/www/html/tcpdf/images/', '/usr/local/apache2/htdocs/tcpdf/images/', K_PATH_MAIN);
  88. foreach ($tcpdf_images_dirs as $tcpdf_images_path) {
  89. if (@file_exists($tcpdf_images_path)) {
  90. break;
  91. }
  92. }
  93. define ('K_PATH_IMAGES', $tcpdf_images_path);
  94. }
  95. if (!defined('PDF_HEADER_LOGO')) {
  96. $tcpdf_header_logo = '';
  97. if (@file_exists(K_PATH_IMAGES.'tcpdf_logo.jpg')) {
  98. $tcpdf_header_logo = 'tcpdf_logo.jpg';
  99. }
  100. define ('PDF_HEADER_LOGO', $tcpdf_header_logo);
  101. }
  102. if (!defined('PDF_HEADER_LOGO_WIDTH')) {
  103. if (!empty($tcpdf_header_logo)) {
  104. define ('PDF_HEADER_LOGO_WIDTH', 30);
  105. } else {
  106. define ('PDF_HEADER_LOGO_WIDTH', 0);
  107. }
  108. }
  109. if (!defined('K_PATH_CACHE')) {
  110. define ('K_PATH_CACHE', sys_get_temp_dir().'/');
  111. }
  112. if (!defined('K_BLANK_IMAGE')) {
  113. define ('K_BLANK_IMAGE', '_blank.png');
  114. }
  115. if (!defined('PDF_PAGE_FORMAT')) {
  116. define ('PDF_PAGE_FORMAT', 'A4');
  117. }
  118. if (!defined('PDF_PAGE_ORIENTATION')) {
  119. define ('PDF_PAGE_ORIENTATION', 'P');
  120. }
  121. if (!defined('PDF_CREATOR')) {
  122. define ('PDF_CREATOR', 'TCPDF');
  123. }
  124. if (!defined('PDF_AUTHOR')) {
  125. define ('PDF_AUTHOR', 'TCPDF');
  126. }
  127. if (!defined('PDF_HEADER_TITLE')) {
  128. define ('PDF_HEADER_TITLE', 'TCPDF Example');
  129. }
  130. if (!defined('PDF_HEADER_STRING')) {
  131. define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org");
  132. }
  133. if (!defined('PDF_UNIT')) {
  134. define ('PDF_UNIT', 'mm');
  135. }
  136. if (!defined('PDF_MARGIN_HEADER')) {
  137. define ('PDF_MARGIN_HEADER', 5);
  138. }
  139. if (!defined('PDF_MARGIN_FOOTER')) {
  140. define ('PDF_MARGIN_FOOTER', 10);
  141. }
  142. if (!defined('PDF_MARGIN_TOP')) {
  143. define ('PDF_MARGIN_TOP', 27);
  144. }
  145. if (!defined('PDF_MARGIN_BOTTOM')) {
  146. define ('PDF_MARGIN_BOTTOM', 25);
  147. }
  148. if (!defined('PDF_MARGIN_LEFT')) {
  149. define ('PDF_MARGIN_LEFT', 15);
  150. }
  151. if (!defined('PDF_MARGIN_RIGHT')) {
  152. define ('PDF_MARGIN_RIGHT', 15);
  153. }
  154. if (!defined('PDF_FONT_NAME_MAIN')) {
  155. define ('PDF_FONT_NAME_MAIN', 'helvetica');
  156. }
  157. if (!defined('PDF_FONT_SIZE_MAIN')) {
  158. define ('PDF_FONT_SIZE_MAIN', 10);
  159. }
  160. if (!defined('PDF_FONT_NAME_DATA')) {
  161. define ('PDF_FONT_NAME_DATA', 'helvetica');
  162. }
  163. if (!defined('PDF_FONT_SIZE_DATA')) {
  164. define ('PDF_FONT_SIZE_DATA', 8);
  165. }
  166. if (!defined('PDF_FONT_MONOSPACED')) {
  167. define ('PDF_FONT_MONOSPACED', 'courier');
  168. }
  169. if (!defined('PDF_IMAGE_SCALE_RATIO')) {
  170. define ('PDF_IMAGE_SCALE_RATIO', 1.25);
  171. }
  172. if (!defined('HEAD_MAGNIFICATION')) {
  173. define('HEAD_MAGNIFICATION', 1.1);
  174. }
  175. if (!defined('K_CELL_HEIGHT_RATIO')) {
  176. define('K_CELL_HEIGHT_RATIO', 1.25);
  177. }
  178. if (!defined('K_TITLE_MAGNIFICATION')) {
  179. define('K_TITLE_MAGNIFICATION', 1.3);
  180. }
  181. if (!defined('K_SMALL_RATIO')) {
  182. define('K_SMALL_RATIO', 2/3);
  183. }
  184. if (!defined('K_THAI_TOPCHARS')) {
  185. define('K_THAI_TOPCHARS', true);
  186. }
  187. if (!defined('K_TCPDF_CALLS_IN_HTML')) {
  188. define('K_TCPDF_CALLS_IN_HTML', true);
  189. }
  190. if (!defined('K_TCPDF_THROW_EXCEPTION_ERROR')) {
  191. define('K_TCPDF_THROW_EXCEPTION_ERROR', false);
  192. }
  193. //============================================================+
  194. // END OF FILE
  195. //============================================================+