class.pdf_from_HTML.inc 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?php
  2. /* GLOBAL PDF GENERATOR v2.0
  3. *
  4. * class.pdf_from_HTML.inc - extension class for fpdf.php
  5. * ____________________________________________________________
  6. *
  7. * To run this class you need to install FPDF.
  8. * This version of Global PDF Generator is tested with FPDF v1.53
  9. * Get a copy from http://www.fpdf.de
  10. *
  11. * Developed by Dennis Ritz <ritz@global-cube.de>
  12. * Copyright (c) 2005-2006 Global-Cube Business Solutions, http://www.global-cube.de/
  13. * All rights reserved.
  14. *
  15. * You are not allowed to sell, rent or lend this software
  16. */
  17. /* Global PDF Generator/class.pdf_from_HTML.inc, v2.0 2006/01/15 23:06:13 */
  18. require("C:/Programme/Apache2/htdocs/qbuilder/pdf/FPDF/fpdf.php");
  19. class PDF_FROM_HTML extends FPDF
  20. {
  21. var $feld = array("","","","");
  22. var $pdf_version = "2.0";
  23. var $produkt = "Undefiniert";
  24. var $scaling = 3.5;
  25. var $relPos = null;
  26. var $bMargin = 20;
  27. function makePDF($objects)
  28. {
  29. $this->SetAutoPageBreak(false, $this->bMargin);
  30. $this->AliasNbPages();
  31. $this->AddPage();
  32. $this->setMargins(10, 30);
  33. $this->insertObjects($objects);
  34. $this->Output();
  35. }
  36. function setFeld ($feld) {
  37. $this->feld = $feld;
  38. }
  39. function Header()
  40. {
  41. $this -> SetXY(10, 10);
  42. //assign Props:
  43. $this -> produkt = "Global PDF Generator";
  44. //LucidaSansUnicode 20
  45. $this->SetFont('LucidaSansUnicode','', 20);
  46. //Font Color
  47. $this->SetTextColor(17, 17,175);
  48. //Fill Color
  49. $this->SetFillColor(147, 147, 147);
  50. //Title
  51. $this->Cell(160,7,$this->produkt,0,0,'L');
  52. //LucidaSansUnicode 10
  53. $this->SetFont('LucidaSansUnicode','',10);
  54. //Font Color
  55. $this->SetTextColor(147, 147, 147);
  56. //Niederlassung
  57. $this->Cell(60,7,$this->feld[0],0,0,'L');
  58. //Planner Version
  59. $this->Cell(60,7,$this->feld[1],0,1,'L');
  60. //Zweite Zeile
  61. $this -> SetX(10);
  62. //Font Color
  63. $this->SetTextColor(255, 255, 255);
  64. //Version
  65. //$this->Cell(286,4,'PDF Generator Version: '.$this->pdf_version,0,1,'L',1);
  66. //Font Color
  67. $this->SetTextColor(255, 255, 255);
  68. //nach rechts
  69. $this->Cell(160,4,'',0,0,'L',1);
  70. //Bereich
  71. $this->Cell(60,4,$this->feld[2],0,0,'L',1);
  72. //Kategorie
  73. $this->Cell(60,4,$this->feld[3],0,0,'L',1);
  74. //Line break
  75. $this->Ln(15);
  76. }
  77. function Footer()
  78. {
  79. $datenquelle = 'Datei';
  80. //Position at 1.5 cm from bottom
  81. $this->SetY(-15);
  82. //Arial italic 8
  83. $this->SetFont('Arial','I',8);
  84. //Font Color
  85. $this->SetTextColor(147, 147, 147);
  86. //Date
  87. $timestamp = time();
  88. $date = date("d.m.Y", $timestamp);
  89. $time = date("H:i:s", $timestamp);
  90. //Date
  91. $this->Cell(1,5,'Erstellungsdatum: '.$date . ' - ' . $time,0,0,'L');
  92. //Page number
  93. $this->Cell(0,5,'- Seite '.$this->PageNo().'/{nb} -',0,1,'C');
  94. //Arial italic 8
  95. $this->SetFont('Arial','',6);
  96. //Copyright information
  97. $this->Cell(0,4,'Global PDF Generator Version: ' . $this -> pdf_version . ' Copyright 2005 Global-Cube Business Solutions All rights reserved',0,0,'C');
  98. }
  99. function insertObjects($objects)
  100. {
  101. //FOR Debugging
  102. /* echo "<pre>";
  103. print_r($objects);
  104. echo "</pre>";
  105. */
  106. foreach ($objects['objects'] as $key_object => $object)
  107. {
  108. $this -> SetFontSize(6);
  109. $object = $this -> SetScale($object);
  110. $object = $this -> SetPos($object);
  111. /* echo "<br>-------------------------------------------------------------------------------<br>";
  112. echo "<pre>";
  113. print_r($objects);
  114. echo "</pre>";
  115. */ $object['TEXT'] = str_replace("<BR>", "\n", $object['TEXT']);
  116. $this -> SetFillColor($object['BGCOLOR'][0], $object['BGCOLOR'][1], $object['BGCOLOR'][2]);
  117. $this -> MultiCell($object['WIDTH'], $object['HEIGHT'], $object['TEXT'], 1, $object['ALIGN'], 1);
  118. }
  119. }
  120. function SetScale($object)
  121. {
  122. $object['LEFT'] = $object['LEFT'] / $this -> scaling;
  123. $object['TOP'] = $object['TOP'] / $this -> scaling;
  124. $object['WIDTH'] = $object['WIDTH'] / $this -> scaling;
  125. $object['HEIGHT'] = $object['HEIGHT'] / $this -> scaling;
  126. return $object;
  127. }
  128. function SetPos($object)
  129. {
  130. //If the height h would cause an overflow, add a new page immediately
  131. if($object['TOP'] + $object['HEIGHT'] + abs($this->tMargin) - $this -> relPos > $this->PageBreakTrigger){
  132. $this -> AddPage();
  133. $this -> relPos = $object['TOP'];
  134. }
  135. $object['HEIGHT'] = $object['HEIGHT'] / (substr_count($object['TEXT'], "<BR>") + 1);
  136. $object['TOP'] = $object['TOP'] + abs($this->tMargin) - $this -> relPos;
  137. $object['LEFT'] = $object['LEFT'] + $this -> lMargin;
  138. $this -> SetXY( $object['LEFT'],$object['TOP']);
  139. return $object;
  140. }
  141. //End of PDF_FROM_HTML class
  142. }
  143. ?>