dolibarr  13.0.2
commonstickergenerator.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003 Steve Dillon
3  * Copyright (C) 2003 Laurent Passebecq
4  * Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
5  * Copyright (C) 2002-2003 Jean-Louis Bergamo <jlb@j1b.org>
6  * Copyright (C) 2006-2013 Laurent Destailleur <eldy@users.sourceforge.net>
7  * Copyright (C) 2015 Francis Appels <francis.appels@yahoo.com>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  */
22 
23 /* Inspire de PDF_Label
24  * PDF_Label - PDF label editing
25  * @package PDF_Label
26  * @author Laurent PASSEBECQ <lpasseb@numericable.fr>
27  * @copyright 2003 Laurent PASSEBECQ
28  * disponible ici : http://www.fpdf.org/fr/script/script29.php
29  */
30 
31 //-------------------------------------------------------------------
32 // VERSIONS :
33 // 1.0 : Initial release
34 // 1.1 : + : Added unit in the constructor
35 // + : Now Positions start @ (1,1).. then the first image @top-left of a page is (1,1)
36 // + : Added in the description of a label :
37 // font-size : defaut char size (can be changed by calling Set_Char_Size(xx);
38 // paper-size : Size of the paper for this sheet (thanx to Al Canton)
39 // metric : type of unit used in this description
40 // You can define your label properties in inches by setting metric to 'in'
41 // and printing in millimiter by setting unit to 'mm' in constructor.
42 // Added some labels :
43 // 5160, 5161, 5162, 5163,5164 : thanx to Al Canton : acanton@adams-blake.com
44 // 8600 : thanx to Kunal Walia : kunal@u.washington.edu
45 // + : Added 3mm to the position of labels to avoid errors
47 
54 require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
55 require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
56 require_once DOL_DOCUMENT_ROOT.'/core/lib/format_cards.lib.php';
57 
58 
62 abstract class CommonStickerGenerator
63 {
64  public $code; // Code of format
65 
69  public $format;
70 
71  // phpcs:disable PEAR.NamingConventions.ValidVariableName.PublicUnderscore
72  // protected
73  // Nom du format de l'etiquette
74  protected $_Avery_Name = '';
75  // Marge de gauche de l'etiquette
76  protected $_Margin_Left = 0;
77  // marge en haut de la page avant la premiere etiquette
78  protected $_Margin_Top = 0;
79  // Espace horizontal entre 2 bandes d'etiquettes
80  protected $_X_Space = 0;
81  // Espace vertical entre 2 bandes d'etiquettes
82  protected $_Y_Space = 0;
83  // NX Nombre d'etiquettes sur la largeur de la page
84  protected $_X_Number = 0;
85  // NY Nombre d'etiquettes sur la hauteur de la page
86  protected $_Y_Number = 0;
87  // Largeur de chaque etiquette
88  protected $_Width = 0;
89  // Hauteur de chaque etiquette
90  protected $_Height = 0;
91  // Hauteur des caracteres
92  protected $_Char_Size = 10;
93  // Hauteur par defaut d'une ligne
94  protected $_Line_Height = 10;
95  // Type of metric.. Will help to calculate good values
96  protected $_Metric = 'mm';
97  // Type of metric for the doc..
98  protected $_Metric_Doc = 'mm';
99  protected $_COUNTX = 1;
100  protected $_COUNTY = 1;
101  protected $_First = 1;
102  public $Tformat;
103  // phpcs:enable
109  public function __construct($db)
110  {
111  $this->db = $db;
112  }
113 
114  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
124  public abstract function write_file($arrayofrecords, $outputlangs, $srctemplatepath, $outputdir = '');
125  // phpcs:enable
126 
135  public abstract function addSticker(&$pdf, $outputlangs, $param);
136 
137  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
146  public function Set_Char_Size(&$pdf, $pt)
147  {
148  // phpcs:enable
149  if ($pt > 3) {
150  $this->_Char_Size = $pt;
151  $this->_Line_Height = $this->_Get_Height_Chars($pt);
152  $pdf->SetFont('', '', $pt);
153  }
154  }
155 
156  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
157  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
170  protected function _Pointille(&$pdf, $x1 = 0, $y1 = 0, $x2 = 210, $y2 = 297, $epaisseur = 1, $nbPointilles = 15)
171  {
172  // phpcs:enable
173  $pdf->SetLineWidth($epaisseur);
174  $length = abs($x1 - $x2);
175  $hauteur = abs($y1 - $y2);
176  if ($length > $hauteur) {
177  $Pointilles = ($length / $nbPointilles) / 2; // taille des pointilles
178  } else {
179  $Pointilles = ($hauteur / $nbPointilles) / 2;
180  }
181  for ($i = $x1; $i <= $x2; $i += $Pointilles + $Pointilles) {
182  for ($j = $i; $j <= ($i + $Pointilles); $j++) {
183  if ($j <= ($x2 - 1)) {
184  $pdf->Line($j, $y1, $j + 1, $y1); // on trace le pointill? du haut, point par point
185  $pdf->Line($j, $y2, $j + 1, $y2); // on trace le pointill? du bas, point par point
186  }
187  }
188  }
189  for ($i = $y1; $i <= $y2; $i += $Pointilles + $Pointilles) {
190  for ($j = $i; $j <= ($i + $Pointilles); $j++) {
191  if ($j <= ($y2 - 1)) {
192  $pdf->Line($x1, $j, $x1, $j + 1); // on trace le pointill? du haut, point par point
193  $pdf->Line($x2, $j, $x2, $j + 1); // on trace le pointill? du bas, point par point
194  }
195  }
196  }
197  }
198 
199  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
200  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
213  protected function _Croix(&$pdf, $x1 = 0, $y1 = 0, $x2 = 210, $y2 = 297, $epaisseur = 1, $taille = 4)
214  {
215  // phpcs:enable
216  $pdf->SetDrawColor(192, 192, 192);
217 
218  $pdf->SetLineWidth($epaisseur);
219  $lg = $taille / 2;
220  // croix haut gauche
221  $pdf->Line($x1, $y1 - $lg, $x1, $y1 + $lg);
222  $pdf->Line($x1 - $lg, $y1, $x1 + $lg, $y1);
223  // croix bas gauche
224  $pdf->Line($x1, $y2 - $lg, $x1, $y2 + $lg);
225  $pdf->Line($x1 - $lg, $y2, $x1 + $lg, $y2);
226  // croix haut droit
227  $pdf->Line($x2, $y1 - $lg, $x2, $y1 + $lg);
228  $pdf->Line($x2 - $lg, $y1, $x2 + $lg, $y1);
229  // croix bas droit
230  $pdf->Line($x2, $y2 - $lg, $x2, $y2 + $lg);
231  $pdf->Line($x2 - $lg, $y2, $x2 + $lg, $y2);
232 
233  $pdf->SetDrawColor(0, 0, 0);
234  }
235 
245  private function convertMetric($value, $src, $dest)
246  {
247  if ($src != $dest) {
248  $tab = array(
249  'in'=>39.37008,
250  'mm'=>1000
251  );
252  return $value * $tab[$dest] / $tab[$src];
253  }
254 
255  return $value;
256  }
257 
258  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
259  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
266  protected function _Get_Height_Chars($pt)
267  {
268  // phpcs:enable
269  // Array for link between height of characters and space between lines
270  $_Table_Hauteur_Chars = array(6=>2, 7=>2.5, 8=>3, 9=>3.5, 10=>4, 11=>6, 12=>7, 13=>8, 14=>9, 15=>10);
271  if (in_array($pt, array_keys($_Table_Hauteur_Chars))) {
272  return $_Table_Hauteur_Chars[$pt];
273  } else {
274  return 100; // There is a prob..
275  }
276  }
277 
278  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
279  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
287  protected function _Set_Format(&$pdf, $format)
288  {
289  // phpcs:enable
290  $this->_Metric = $format['metric'];
291  $this->_Avery_Name = $format['name'];
292  $this->_Avery_Code = $format['code'];
293  $this->_Margin_Left = $this->convertMetric($format['marginLeft'], $this->_Metric, $this->_Metric_Doc);
294  $this->_Margin_Top = $this->convertMetric($format['marginTop'], $this->_Metric, $this->_Metric_Doc);
295  $this->_X_Space = $this->convertMetric($format['SpaceX'], $this->_Metric, $this->_Metric_Doc);
296  $this->_Y_Space = $this->convertMetric($format['SpaceY'], $this->_Metric, $this->_Metric_Doc);
297  $this->_X_Number = $format['NX'];
298  $this->_Y_Number = $format['NY'];
299  $this->_Width = $this->convertMetric($format['width'], $this->_Metric, $this->_Metric_Doc);
300  $this->_Height = $this->convertMetric($format['height'], $this->_Metric, $this->_Metric_Doc);
301  $this->Set_Char_Size($pdf, $format['font-size']);
302  }
303 }
convertMetric($value, $src, $dest)
Convert units (in to mm, mm to in) $src and $dest must be &#39;in&#39; or &#39;mm&#39;.
_Croix(&$pdf, $x1=0, $y1=0, $x2=210, $y2=297, $epaisseur=1, $taille=4)
protected Function realisant une croix aux 4 coins des cartes
Class to generate stick sheet with format Avery or other personalised.
addSticker(&$pdf, $outputlangs, $param)
Output a sticker on page at position _COUNTX, _COUNTY (_COUNTX and _COUNTY start from 0) ...
$conf db
API class for accounts.
Definition: inc.php:54
write_file($arrayofrecords, $outputlangs, $srctemplatepath, $outputdir= '')
Function to build PDF on disk, then output on HTTP strem.
_Pointille(&$pdf, $x1=0, $y1=0, $x2=210, $y2=297, $epaisseur=1, $nbPointilles=15)
protected Print dot line
Set_Char_Size(&$pdf, $pt)
Methode qui permet de modifier la taille des caracteres Cela modiera aussi l&#39;espace entre chaque lign...
_Set_Format(&$pdf, $format)
protected Set format
_Get_Height_Chars($pt)
protected Give the height for a char size given.