-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPDF_Label.php
163 lines (147 loc) · 7.82 KB
/
PDF_Label.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
////////////////////////////////////////////////////////////////////////////////////////////////
// PDF_Label
//
// Class to print labels in Avery or custom formats
//
// Copyright (C) 2003 Laurent PASSEBECQ (LPA)
// Based on code by Steve Dillon
//
//---------------------------------------------------------------------------------------------
// VERSIONS:
// 1.0: Initial release
// 1.1: + Added unit in the constructor
// + Now Positions start at (1,1).. then the first label at top-left of a page is (1,1)
// + Added in the description of a label:
// font-size : defaut char size (can be changed by calling Set_Char_Size(xx);
// paper-size: Size of the paper for this sheet (thanx to Al Canton)
// metric : type of unit used in this description
// You can define your label properties in inches by setting metric to
// 'in' and print in millimiters by setting unit to 'mm' in constructor
// Added some formats:
// 5160, 5161, 5162, 5163, 5164: thanks to Al Canton
// 8600 : thanks to Kunal Walia
// + Added 3mm to the position of labels to avoid errors
// 1.2: = Bug of positioning
// = Set_Font_Size modified -> Now, just modify the size of the font
// 1.3: + Labels are now printed horizontally
// = 'in' as document unit didn't work
// 1.4: + Page scaling is disabled in printing options
// 1.5: + Added 3422 format
////////////////////////////////////////////////////////////////////////////////////////////////
/**
* PDF_Label - PDF label editing
* @package PDF_Label
* @author Laurent PASSEBECQ
* @copyright 2003 Laurent PASSEBECQ
**/
require_once('fpdf.php');
class PDF_Label extends FPDF {
// Private properties
var $_Margin_Left; // Left margin of labels
var $_Margin_Top; // Top margin of labels
var $_X_Space; // Horizontal space between 2 labels
var $_Y_Space; // Vertical space between 2 labels
var $_X_Number; // Number of labels horizontally
var $_Y_Number; // Number of labels vertically
var $_Width; // Width of label
var $_Height; // Height of label
var $_Line_Height; // Line height
var $_Padding; // Padding
var $_Metric_Doc; // Type of metric for the document
var $_COUNTX; // Current x position
var $_COUNTY; // Current y position
// List of label formats
var $_Avery_Labels = array(
'5160' => array('paper-size'=>'letter', 'metric'=>'mm', 'marginLeft'=>1.762, 'marginTop'=>10.7, 'NX'=>3, 'NY'=>10, 'SpaceX'=>3.175, 'SpaceY'=>0, 'width'=>66.675, 'height'=>25.4, 'font-size'=>8),
'5161' => array('paper-size'=>'letter', 'metric'=>'mm', 'marginLeft'=>0.967, 'marginTop'=>10.7, 'NX'=>2, 'NY'=>10, 'SpaceX'=>3.967, 'SpaceY'=>0, 'width'=>101.6, 'height'=>25.4, 'font-size'=>8),
'5162' => array('paper-size'=>'letter', 'metric'=>'mm', 'marginLeft'=>0.97, 'marginTop'=>20.224, 'NX'=>2, 'NY'=>7, 'SpaceX'=>4.762, 'SpaceY'=>0, 'width'=>100.807, 'height'=>35.72, 'font-size'=>8),
'5163' => array('paper-size'=>'letter', 'metric'=>'mm', 'marginLeft'=>1.762, 'marginTop'=>10.7, 'NX'=>2, 'NY'=>5, 'SpaceX'=>3.175, 'SpaceY'=>0, 'width'=>101.6, 'height'=>50.8, 'font-size'=>8),
'5164' => array('paper-size'=>'letter', 'metric'=>'in', 'marginLeft'=>0.148, 'marginTop'=>0.5, 'NX'=>2, 'NY'=>3, 'SpaceX'=>0.2031, 'SpaceY'=>0, 'width'=>4.0, 'height'=>3.33, 'font-size'=>12),
'8600' => array('paper-size'=>'letter', 'metric'=>'mm', 'marginLeft'=>7.1, 'marginTop'=>19, 'NX'=>3, 'NY'=>10, 'SpaceX'=>9.5, 'SpaceY'=>3.1, 'width'=>66.6, 'height'=>25.4, 'font-size'=>8),
'L7163'=> array('paper-size'=>'A4', 'metric'=>'mm', 'marginLeft'=>5, 'marginTop'=>15, 'NX'=>2, 'NY'=>7, 'SpaceX'=>25, 'SpaceY'=>0, 'width'=>99.1, 'height'=>38.1, 'font-size'=>9),
'3422' => array('paper-size'=>'A4', 'metric'=>'mm', 'marginLeft'=>7, 'marginTop'=>12, 'NX'=>3, 'NY'=>8, 'SpaceX'=>3, 'SpaceY'=>0, 'width'=>63.5, 'height'=>33.9, 'font-size'=>9)
);
// Constructor
function PDF_Label($format, $unit='mm', $posX=1, $posY=1) {
if (is_array($format)) {
// Custom format
$Tformat = $format;
} else {
// Built-in format
if (!isset($this->_Avery_Labels[$format]))
$this->Error('Unknown label format: '.$format);
$Tformat = $this->_Avery_Labels[$format];
}
parent::__construct('P', $unit, $Tformat['paper-size']);
$this->_Metric_Doc = $unit;
$this->_Set_Format($Tformat);
$this->SetFont('Arial');
$this->SetMargins(0,0);
$this->SetAutoPageBreak(false);
$this->_COUNTX = $posX-2;
$this->_COUNTY = $posY-1;
}
function _Set_Format($format) {
$this->_Margin_Left = $this->_Convert_Metric($format['marginLeft'], $format['metric']);
$this->_Margin_Top = $this->_Convert_Metric($format['marginTop'], $format['metric']);
$this->_X_Space = $this->_Convert_Metric($format['SpaceX'], $format['metric']);
$this->_Y_Space = $this->_Convert_Metric($format['SpaceY'], $format['metric']);
$this->_X_Number = $format['NX'];
$this->_Y_Number = $format['NY'];
$this->_Width = $this->_Convert_Metric($format['width'], $format['metric']);
$this->_Height = $this->_Convert_Metric($format['height'], $format['metric']);
$this->Set_Font_Size($format['font-size']);
$this->_Padding = $this->_Convert_Metric(3, 'mm');
}
// convert units (in to mm, mm to in)
// $src must be 'in' or 'mm'
function _Convert_Metric($value, $src) {
$dest = $this->_Metric_Doc;
if ($src != $dest) {
$a['in'] = 39.37008;
$a['mm'] = 1000;
return $value * $a[$dest] / $a[$src];
} else {
return $value;
}
}
// Give the line height for a given font size
function _Get_Height_Chars($pt) {
$a = array(6=>2, 7=>2.5, 8=>3, 9=>4, 10=>5, 11=>6, 12=>7, 13=>8, 14=>9, 15=>10);
if (!isset($a[$pt]))
$this->Error('Invalid font size: '.$pt);
return $this->_Convert_Metric($a[$pt], 'mm');
}
// Set the character size
// This changes the line height too
function Set_Font_Size($pt) {
$this->_Line_Height = $this->_Get_Height_Chars($pt);
$this->SetFontSize($pt);
}
// Print a label
function Add_Label($text) {
$this->_COUNTX++;
if ($this->_COUNTX == $this->_X_Number) {
// Row full, we start a new one
$this->_COUNTX=0;
$this->_COUNTY++;
if ($this->_COUNTY == $this->_Y_Number) {
// End of page reached, we start a new one
$this->_COUNTY=0;
$this->AddPage();
}
}
$_PosX = $this->_Margin_Left + $this->_COUNTX*($this->_Width+$this->_X_Space) + $this->_Padding;
$_PosY = $this->_Margin_Top + $this->_COUNTY*($this->_Height+$this->_Y_Space) + $this->_Padding;
$this->SetXY($_PosX, $_PosY);
$this->MultiCell($this->_Width - $this->_Padding, $this->_Line_Height, $text, 0, 'L');
}
function _putcatalog()
{
parent::_putcatalog();
// Disable the page scaling option in the printing dialog
$this->_out('/ViewerPreferences <</PrintScaling /None>>');
}
}
?>