Advertisement
johncarlson21

tcpdf config

Oct 29th, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.34 KB | None | 0 0
  1. <?php
  2. //============================================================+
  3. // File name   : tcpdf_config.php
  4. // Begin       : 2004-06-11
  5. // Last Update : 2013-05-16
  6. //
  7. // Description : Example of alternative configuration file for TCPDF.
  8. // Author      : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
  9. // License     : GNU-LGPL v3 (http://www.gnu.org/copyleft/lesser.html)
  10. // -------------------------------------------------------------------
  11. // Copyright (C) 2004-2013  Nicola Asuni - Tecnick.com LTD
  12. //
  13. // This file is part of TCPDF software library.
  14. //
  15. // TCPDF is free software: you can redistribute it and/or modify it
  16. // under the terms of the GNU Lesser General Public License as
  17. // published by the Free Software Foundation, either version 3 of the
  18. // License, or (at your option) any later version.
  19. //
  20. // TCPDF is distributed in the hope that it will be useful, but
  21. // WITHOUT ANY WARRANTY; without even the implied warranty of
  22. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. // See the GNU Lesser General Public License for more details.
  24. //
  25. // You should have received a copy of the GNU Lesser General Public License
  26. // along with TCPDF.  If not, see <http://www.gnu.org/licenses/>.
  27. //
  28. // See LICENSE.TXT file for more information.
  29. //============================================================+
  30. /**
  31.  * Example of alternative configuration file for TCPDF.
  32.  * @author Nicola Asuni
  33.  * @package com.tecnick.tcpdf
  34.  * @version 4.9.005
  35.  * @since 2004-10-27
  36.  */
  37. /**
  38.  * Define the following constant to ignore the default configuration file.
  39.  */
  40. define ('K_TCPDF_EXTERNAL_CONFIG', true);
  41. /**
  42.  * Installation path (/var/www/tcpdf/).
  43.  * By default it is automatically calculated but you can also set it as a fixed string to improve performances.
  44.  */
  45. //define ('K_PATH_MAIN', '');
  46. /**
  47.  * URL path to tcpdf installation folder (http://localhost/tcpdf/).
  48.  * By default it is automatically set but you can also set it as a fixed string to improve performances.
  49.  */
  50. //define ('K_PATH_URL', '');
  51. /**
  52.  * Path for PDF fonts.
  53.  * By default it is automatically set but you can also set it as a fixed string to improve performances.
  54.  */
  55. //define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/');
  56. /**
  57.  * Default images directory.
  58.  * By default it is automatically set but you can also set it as a fixed string to improve performances.
  59.  */
  60. define ('K_PATH_IMAGES', dirname(__FILE__).'/../images/');
  61. /**
  62.  * Deafult image logo used be the default Header() method.
  63.  * Please set here your own logo or an empty string to disable it.
  64.  */
  65. define ('PDF_HEADER_LOGO', 'tcpdf_logo.jpg');
  66. /**
  67.  * Header logo image width in user units.
  68.  */
  69. define ('PDF_HEADER_LOGO_WIDTH', 30);
  70. /**
  71.  * Cache directory for temporary files (full path).
  72.  */
  73. define ('K_PATH_CACHE', sys_get_temp_dir().'/');
  74. /**
  75.  * Generic name for a blank image.
  76.  */
  77. define ('K_BLANK_IMAGE', '_blank.png');
  78. /**
  79.  * Page format.
  80.  */
  81. define ('PDF_PAGE_FORMAT', 'A4');
  82. /**
  83.  * Page orientation (P=portrait, L=landscape).
  84.  */
  85. define ('PDF_PAGE_ORIENTATION', 'P');
  86. /**
  87.  * Document creator.
  88.  */
  89. define ('PDF_CREATOR', 'TCPDF');
  90. /**
  91.  * Document author.
  92.  */
  93. define ('PDF_AUTHOR', 'TCPDF');
  94. /**
  95.  * Header title.
  96.  */
  97. define ('PDF_HEADER_TITLE', 'TCPDF Example');
  98. /**
  99.  * Header description string.
  100.  */
  101. define ('PDF_HEADER_STRING', "by Nicola Asuni - Tecnick.com\nwww.tcpdf.org");
  102. /**
  103.  * Document unit of measure [pt=point, mm=millimeter, cm=centimeter, in=inch].
  104.  */
  105. define ('PDF_UNIT', 'mm');
  106. /**
  107.  * Header margin.
  108.  */
  109. define ('PDF_MARGIN_HEADER', 5);
  110. /**
  111.  * Footer margin.
  112.  */
  113. define ('PDF_MARGIN_FOOTER', 10);
  114. /**
  115.  * Top margin.
  116.  */
  117. define ('PDF_MARGIN_TOP', 10);
  118. /**
  119.  * Bottom margin.
  120.  */
  121. define ('PDF_MARGIN_BOTTOM', 10);
  122. /**
  123.  * Left margin.
  124.  */
  125. define ('PDF_MARGIN_LEFT', 10);
  126. /**
  127.  * Right margin.
  128.  */
  129. define ('PDF_MARGIN_RIGHT', 20);
  130. /**
  131.  * Default main font name.
  132.  */
  133. define ('PDF_FONT_NAME_MAIN', 'helvetica');
  134. /**
  135.  * Default main font size.
  136.  */
  137. define ('PDF_FONT_SIZE_MAIN', 10);
  138. /**
  139.  * Default data font name.
  140.  */
  141. define ('PDF_FONT_NAME_DATA', 'helvetica');
  142. /**
  143.  * Default data font size.
  144.  */
  145. define ('PDF_FONT_SIZE_DATA', 8);
  146. /**
  147.  * Default monospaced font name.
  148.  */
  149. define ('PDF_FONT_MONOSPACED', 'courier');
  150. /**
  151.  * Ratio used to adjust the conversion of pixels to user units.
  152.  */
  153. define ('PDF_IMAGE_SCALE_RATIO', 1.25);
  154. /**
  155.  * Magnification factor for titles.
  156.  */
  157. define('HEAD_MAGNIFICATION', 1.1);
  158. /**
  159.  * Height of cell respect font height.
  160.  */
  161. define('K_CELL_HEIGHT_RATIO', 1.25);
  162. /**
  163.  * Title magnification respect main font size.
  164.  */
  165. define('K_TITLE_MAGNIFICATION', 1.3);
  166. /**
  167.  * Reduction factor for small font.
  168.  */
  169. define('K_SMALL_RATIO', 2/3);
  170. /**
  171.  * Set to true to enable the special procedure used to avoid the overlappind of symbols on Thai language.
  172.  */
  173. define('K_THAI_TOPCHARS', false);
  174. /**
  175.  * If true allows to call TCPDF methods using HTML syntax
  176.  * IMPORTANT: For security reason, disable this feature if you are printing user HTML content.
  177.  */
  178. define('K_TCPDF_CALLS_IN_HTML', true);
  179. /**
  180.  * If true adn PHP version is greater than 5, then the Error() method throw new exception instead of terminating the execution.
  181.  */
  182. define('K_TCPDF_THROW_EXCEPTION_ERROR', false);
  183. //============================================================+
  184. // END OF FILE
  185. //============================================================+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement