Pdf.class.php 6.5 KB

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