Pdf.class.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. /**
  3. Classe de génération des PDF à partir d'un flux html.
  4. Fonctionne sous linux et windows, necessite les binaires wkhtml placés dans "erp\lib\wkhtmltopdf"
  5. Sous linux :
  6. sudo apt-get install wkhtmltopdf
  7. sudo chmod a+x /usr/local/bin/wkhtmltopdf
  8. sudo apt-get install openssl build-essential xorg libssl-dev
  9. sudo apt-get install xvfb
  10. echo xvfb-run -a -s "-screen 0 640x480x16" wkhtmltopdf "$@" > /usr/local/bin/wkhtmltopdf.sh
  11. sudo chmod a+x /usr/local/bin/wkhtmltopdf.sh
  12. ex utilisation :
  13. $pdf = new Pdf('<h1>Hello World</h1>');
  14. $pdf->orientation = 'Landscape';
  15. header('Content-Type: application/pdf');
  16. header('Content-Disposition: attachment; filename="my.pdf"');
  17. echo $pdf->generate();
  18. Pour ajouter un header, il faut ajouter les éléments suivants :
  19. <!-- #header --> avant le contenu du header
  20. <!-- /header --> après le contenu du header
  21. De même avec le footer (remplacer header par footer)
  22. @author v.carruesco, v.morreel
  23. @version 2.0
  24. **/
  25. class Pdf{
  26. public $html,$orientation,$margin,$css;
  27. function __construct($html = null, $margin = array(), $format = 'A4', $orientation = 'Portrait'){
  28. $this->html = $html;
  29. $this->margin = (object) array(
  30. 'top' => isset($margin['top']) ? $margin['top'] : '10',
  31. 'right' => isset($margin['right']) ? $margin['right'] : '10',
  32. 'bottom' => isset($margin['bottom']) ? $margin['bottom'] : '10',
  33. 'left' => isset($margin['left']) ? $margin['left'] : '10'
  34. );
  35. $this->format = $format;
  36. $this->orientation = $orientation;
  37. }
  38. // Retourne (uniquement sur les pdf avec texte editable) la liste des champs editable
  39. // du pdf spécifié et leurs valeurs. Si le parametre onlyfdf est a true, la méthode retournera
  40. // le format fdf brut (utile uniquement pour du débug ou pour de l'interne)
  41. // NB : Penser a installer ``apt-get install pdftk`` (ou pdftk pour windows) sur le système avant de lancer ce script
  42. public static function extractData($file,$onlyfdf = false){
  43. $data = dirname($file).DIRECTORY_SEPARATOR.'data.fdf';
  44. $command = 'pdftk '.$file.' generate_fdf output -';
  45. $datastream = shell_exec($command);
  46. if($onlyfdf) return $datastream;
  47. preg_match_all('|\/V ([^\n]*)\n\/T \(([^\n]*)\)|iUsm', $datastream, $matches,PREG_SET_ORDER);
  48. $parameters = array();
  49. foreach ($matches as $match) {
  50. if(count($match)==3)
  51. $parameters[$match[2]] = $match[1];
  52. }
  53. return $parameters;
  54. }
  55. // Utilise le pdf $file comme modèle (uniquement un pdf avec texte editable) et le remplis avec le tableau clé valeur $parameters
  56. // puis retourne le flux du pdf remplis.
  57. // Mettre la valeur /Yes pour les checkbox cochées ou / pour les décochées
  58. // L'argument $flat, définit si le document final doit être a plat ou encore editable
  59. // NB : Penser a installer ``apt-get install pdftk`` (ou pdftk pour windows) sur le système avant de lancer ce script
  60. public static function fillData($file,$parameters,$flat = false){
  61. $fdf = self::extractData($file,true);
  62. $fdf = preg_replace_callback('|\/V ([^\n]*)\n\/T \(([^\n]*)\)|ism',function($m) use ($parameters){
  63. $return = '/V ';
  64. $value = isset($parameters[$m[2]]) ? $parameters[$m[2]]: '';
  65. if($value=='/'){
  66. $return .= $value;
  67. }else{
  68. $return .= '('.$value.')';
  69. }
  70. $return .= PHP_EOL;
  71. $return .= '/T ('.$m[2].')';
  72. return $return;
  73. },$fdf);
  74. $command = 'echo "'.str_replace('"','\"',$fdf).'"| pdftk '.$file.' fill_form - output -';
  75. if($flat) $command.=' flatten';
  76. $datastream = shell_exec($command);
  77. return $datastream;
  78. }
  79. public function generate(){
  80. $fileName = time().mt_rand(0,100);
  81. if(!file_exists(File::dir().'tmp')) mkdir(File::dir().'tmp');
  82. $bodyPath = File::dir().'tmp'.SLASH.$fileName.'.html';
  83. $pdfPath = File::dir().'tmp'.SLASH.$fileName.'.pdf';
  84. $body = $this->html;
  85. $head = '';
  86. $foot = '';
  87. //Récupération du head html
  88. if(preg_match("/<!DOCTYPE.*<body.*>/isU", $body, $match))
  89. $head = $match[0];
  90. //Récupération du footer html
  91. if(preg_match("/<\/body>.*<\/html>/isU", $body, $match))
  92. $foot = $match[0];
  93. //Récupération du header pdf
  94. if(preg_match("/<!--[\s\t\r\n]*#header[\s\t\r\n]*-->(.*)<!--[\s\t\r\n]*\/header[\s\t\r\n]*-->/isU", $body, $match))
  95. $header = $match[0];
  96. //Récupération du footer pdf
  97. if(preg_match("/<!--[\s\t\r\n]*#footer[\s\t\r\n]*-->(.*)<!--[\s\t\r\n]*\/footer[\s\t\r\n]*-->/isU", $body, $match))
  98. $footer = $match[0];
  99. //Récupération du body
  100. if(isset($header)){
  101. $body = str_replace($header, '', $body);
  102. $header = $head.$header.$foot;
  103. }
  104. if(isset($footer)){
  105. $body = str_replace($footer, '', $body);
  106. $footer = $head.$footer.$foot;
  107. }
  108. file_put_contents($bodyPath, $body);
  109. $outcmd = array();
  110. $cmd = strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' ? '"C:'.SLASH.'Program Files'.SLASH.'wkhtmltopdf'.SLASH.'bin'.SLASH.'wkhtmltopdf.exe" ' : "/usr/local/bin/wkhtmltopdf.sh ";
  111. $cmd .= '-s '.$this->format.' -O '.$this->orientation.' -T '.$this->margin->top.' -R '.$this->margin->right.' -B '.$this->margin->bottom.' -L '.$this->margin->left;
  112. $cmd .= ' -d 100 --print-media-type ';
  113. $cmd .= ' --user-style-sheet '.dirname(__FILE__).'/../'.$this->css.' --enable-javascript --javascript-delay 1000 ';
  114. if(isset($header)) {
  115. $headerPath = File::dir().'tmp'.SLASH.'header-'.$fileName.'.html';
  116. file_put_contents($headerPath, $header);
  117. $cmd .= ' --header-html '.$headerPath.' --header-spacing 5 --margin-top 40';
  118. }
  119. if(isset($footer)) {
  120. $footerPath = File::dir().'tmp'.SLASH.'footer-'.$fileName.'.html';
  121. file_put_contents($footerPath, $footer);
  122. $cmd .= ' --footer-html '.$footerPath.' --footer-spacing 5 --margin-bottom 30';
  123. }
  124. $cmd .= ' --footer-right "[page] / [toPage]" --footer-font-size 8 ';
  125. $cmd .= $bodyPath.' '.$pdfPath;
  126. exec($cmd, $outcmd);
  127. $stream = file_get_contents($pdfPath);
  128. if(isset($header)) unlink($headerPath);
  129. if(isset($footer)) unlink($footerPath);
  130. unlink($bodyPath);
  131. unlink($pdfPath);
  132. return $stream;
  133. }
  134. }
  135. ?>