File: | C4/Creators/PDF.pm |
Coverage: | 27.5% |
line | stmt | bran | cond | sub | time | code |
---|---|---|---|---|---|---|
1 | package C4::Creators::PDF; | |||||
2 | ||||||
3 | # Copyright 2009 Foundations Bible College. | |||||
4 | # | |||||
5 | # This file is part of Koha. | |||||
6 | # | |||||
7 | # Koha is free software; you can redistribute it and/or modify it under the | |||||
8 | # terms of the GNU General Public License as published by the Free Software | |||||
9 | # Foundation; either version 2 of the License, or (at your option) any later | |||||
10 | # version. | |||||
11 | # | |||||
12 | # Koha is distributed in the hope that it will be useful, but WITHOUT ANY | |||||
13 | # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR | |||||
14 | # A PARTICULAR PURPOSE. See the GNU General Public License for more details. | |||||
15 | # | |||||
16 | # You should have received a copy of the GNU General Public License along | |||||
17 | # with Koha; if not, write to the Free Software Foundation, Inc., | |||||
18 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | |||||
19 | ||||||
20 | 5 5 5 | 65 48 197 | use strict; | |||
21 | 5 5 5 | 63 42 343 | use warnings; | |||
22 | 5 5 5 | 43357 548464 1847 | use PDF::Reuse; | |||
23 | 5 5 5 | 111504 26046 314 | use PDF::Reuse::Barcode; | |||
24 | ||||||
25 | BEGIN { | |||||
26 | 5 5 5 5 | 265 3027 140 474 | use version; our $VERSION = qv('1.0.0_1'); | |||
27 | } | |||||
28 | ||||||
29 | sub _InitVars { | |||||
30 | 1 | 2 | my $self = shift; | |||
31 | 1 | 1 | my $param = shift; | |||
32 | 1 | 70342 | prInitVars($param); | |||
33 | } | |||||
34 | ||||||
35 | sub new { | |||||
36 | 1 | 2 | my $invocant = shift; | |||
37 | 1 | 9 | my $type = ref($invocant) || $invocant; | |||
38 | 1 | 4 | my %opts = @_; | |||
39 | 1 | 3 | my $self = {}; | |||
40 | 1 | 5 | _InitVars() if ($opts{InitVars} == 0); | |||
41 | 1 | 67 | _InitVars($opts{InitVars}) if ($opts{InitVars} > 0); | |||
42 | 1 | 4 | delete($opts{InitVars}); | |||
43 | 1 | 3 | prDocDir($opts{'DocDir'}) if $opts{'DocDir'}; | |||
44 | 1 | 2 | delete($opts{'DocDir'}); | |||
45 | 1 | 11 | prFile(%opts); | |||
46 | 1 | 38501 | bless ($self, $type); | |||
47 | 1 | 10 | return $self; | |||
48 | } | |||||
49 | ||||||
50 | sub End { | |||||
51 | 1 | 3 | my $self = shift; | |||
52 | # if the pdf stream is utf8, explicitly set it to utf8; this avoids at lease some wide character errors -chris_n | |||||
53 | 1 | 58 | utf8::encode($PDF::Reuse::stream) if utf8::is_utf8($PDF::Reuse::stream); | |||
54 | 1 | 9 | prEnd(); | |||
55 | } | |||||
56 | ||||||
57 | sub Add { | |||||
58 | 1 | 3 | my $self = shift; | |||
59 | 1 | 2 | my $string = shift; | |||
60 | 1 | 7 | prAdd($string); | |||
61 | } | |||||
62 | ||||||
63 | sub Bookmark { | |||||
64 | 1 | 2 | my $self = shift; | |||
65 | 1 | 2 | my $reference = shift; | |||
66 | 1 | 1119 | prBookmark($reference); | |||
67 | } | |||||
68 | ||||||
69 | sub Compress { | |||||
70 | 1 | 2 | my $self = shift; | |||
71 | 1 | 2 | my $directive = shift; | |||
72 | 1 | 16709 | prCompress($directive); | |||
73 | } | |||||
74 | ||||||
75 | sub Doc { | |||||
76 | 0 | 0 | my $self = shift; | |||
77 | 0 | 0 | my %params = @_; | |||
78 | 0 | 0 | prDoc(%params); | |||
79 | } | |||||
80 | ||||||
81 | sub DocForm { | |||||
82 | 0 | 0 | my $self = shift; | |||
83 | 0 | 0 | my %params = @_; | |||
84 | 0 | 0 | return prDocForm(%params); | |||
85 | } | |||||
86 | ||||||
87 | sub Extract { | |||||
88 | 0 | 0 | my $self = shift; | |||
89 | 0 | 0 | my ($pdfFile, $pageNo, $oldInternalName) = @_; | |||
90 | 0 | 0 | return prExtract($pdfFile, $pageNo, $oldInternalName); | |||
91 | } | |||||
92 | ||||||
93 | sub Field { | |||||
94 | 0 | 0 | my $self = shift; | |||
95 | 0 | 0 | my ($fieldName, $value) = @_; | |||
96 | 0 | 0 | prField($fieldName, $value); | |||
97 | } | |||||
98 | ||||||
99 | sub Font { | |||||
100 | 1 | 6 | my $self = shift; | |||
101 | 1 | 6 | my $fontName = shift; | |||
102 | 1 | 19 | return prFont($fontName); | |||
103 | } | |||||
104 | ||||||
105 | sub FontSize { | |||||
106 | 3 | 6 | my $self = shift; | |||
107 | 3 | 4 | my $size = shift; | |||
108 | 3 | 16 | return prFontSize($size); | |||
109 | } | |||||
110 | ||||||
111 | sub Form { | |||||
112 | 0 | 0 | my $self = shift; | |||
113 | 0 | 0 | my %params = @_; | |||
114 | 0 | 0 | return prForm(%params); | |||
115 | } | |||||
116 | ||||||
117 | sub GetLogBuffer { | |||||
118 | 0 | 0 | my $self = shift; | |||
119 | 0 | 0 | return prGetLogBuffer(); | |||
120 | } | |||||
121 | ||||||
122 | sub GraphState { | |||||
123 | 0 | 0 | my $self = shift; | |||
124 | 0 | 0 | my $string = shift; | |||
125 | 0 | 0 | prGraphState($string); | |||
126 | } | |||||
127 | ||||||
128 | sub Image { | |||||
129 | 0 | 0 | my $self = shift; | |||
130 | 0 | 0 | my %params = @_; | |||
131 | 0 | 0 | return prImage(%params); | |||
132 | } | |||||
133 | ||||||
134 | sub Init { | |||||
135 | 0 | 0 | my $self = shift; | |||
136 | 0 | 0 | my ($string, $duplicateCode) = @_; | |||
137 | 0 | 0 | prInit($string, $duplicateCode); | |||
138 | } | |||||
139 | ||||||
140 | sub AltJpeg { | |||||
141 | 0 | 0 | my $self = shift; | |||
142 | 0 | 0 | my ($imageData, $width, $height, $imageFormat, $altImageData, $altImageWidth, $altImageHeight, $altImageFormat) = @_; | |||
143 | 0 | 0 | return prAltJpeg($imageData, $width, $height, $imageFormat, $altImageData, $altImageWidth, $altImageHeight, $altImageFormat); | |||
144 | } | |||||
145 | ||||||
146 | sub Jpeg { | |||||
147 | 0 | 0 | my $self = shift; | |||
148 | 0 | 0 | my ($imageData, $width, $height, $imageFormat) = @_; | |||
149 | 0 | 0 | return prJpegBlob($imageData, $width, $height, $imageFormat); | |||
150 | } | |||||
151 | ||||||
152 | # FIXME: This magick foo is an absolute hack until the maintainer of PDF::Reuse releases the next version which will include these features | |||||
153 | ||||||
154 | sub prAltJpeg | |||||
155 | 0 | 0 | { my ($iData, $iWidth, $iHeight, $iFormat,$aiData, $aiWidth, $aiHeight, $aiFormat) = @_; | |||
156 | 0 | 0 | my ($namnet, $utrad); | |||
157 | 0 | 0 | if (! $PDF::Reuse::pos) # If no output is active, it is no use to continue | |||
158 | 0 | 0 | { return undef; | |||
159 | } | |||||
160 | 0 | 0 | prJpegBlob($aiData, $aiWidth, $aiHeight, $aiFormat); | |||
161 | 0 | 0 | my $altObjNr = $PDF::Reuse::objNr; | |||
162 | 0 | 0 | $PDF::Reuse::imageNr++; | |||
163 | 0 | 0 | $namnet = 'Ig' . $PDF::Reuse::imageNr; | |||
164 | 0 | 0 | $PDF::Reuse::objNr++; | |||
165 | 0 | 0 | $PDF::Reuse::objekt[$PDF::Reuse::objNr] = $PDF::Reuse::pos; | |||
166 | 0 | 0 | $utrad = "$PDF::Reuse::objNr 0 obj\n" . | |||
167 | "[ << /Image $altObjNr 0 R\n" . | |||||
168 | "/DefaultForPrinting true\n" . | |||||
169 | ">>\n" . | |||||
170 | "]\n" . | |||||
171 | "endobj\n"; | |||||
172 | 0 | 0 | $PDF::Reuse::pos += syswrite *PDF::Reuse::UTFIL, $utrad; | |||
173 | 0 | 0 | if ($PDF::Reuse::runfil) | |||
174 | 0 | 0 | { $PDF::Reuse::log .= "Jpeg~AltImage\n"; | |||
175 | } | |||||
176 | 0 | 0 | $PDF::Reuse::objRef{$namnet} = $PDF::Reuse::objNr; | |||
177 | 0 | 0 | $namnet = prJpegBlob($iData, $iWidth, $iHeight, $iFormat, $PDF::Reuse::objNr); | |||
178 | 0 | 0 | if (! $PDF::Reuse::pos) | |||
179 | 0 | 0 | { errLog("No output file, you have to call prFile first"); | |||
180 | } | |||||
181 | 0 | 0 | return $namnet; | |||
182 | } | |||||
183 | ||||||
184 | sub prJpegBlob | |||||
185 | 0 | 0 | { my ($iData, $iWidth, $iHeight, $iFormat, $altArrayObjNr) = @_; | |||
186 | 0 | 0 | my ($iLangd, $namnet, $utrad); | |||
187 | 0 | 0 | if (! $PDF::Reuse::pos) # If no output is active, it is no use to continue | |||
188 | 0 | 0 | { return undef; | |||
189 | } | |||||
190 | 0 | 0 | my $checkidOld = $PDF::Reuse::checkId; | |||
191 | 0 | 0 | if (!$iFormat) | |||
192 | 0 | 0 | { my ($iFile, $checkId) = findGet($iData, $checkidOld); | |||
193 | 0 | 0 | if ($iFile) | |||
194 | 0 | 0 | { $iLangd = (stat($iFile))[7]; | |||
195 | 0 | 0 | $PDF::Reuse::imageNr++; | |||
196 | 0 | 0 | $namnet = 'Ig' . $PDF::Reuse::imageNr; | |||
197 | 0 | 0 | $PDF::Reuse::objNr++; | |||
198 | 0 | 0 | $PDF::Reuse::objekt[$PDF::Reuse::objNr] = $PDF::Reuse::pos; | |||
199 | 0 | 0 | open (BILDFIL, "<$iFile") || errLog("Couldn't open $iFile, $!, aborts"); | |||
200 | 0 | 0 | binmode BILDFIL; | |||
201 | 0 | 0 | my $iStream; | |||
202 | 0 | 0 | sysread BILDFIL, $iStream, $iLangd; | |||
203 | 0 | 0 | $utrad = "$PDF::Reuse::objNr 0 obj\n<</Type/XObject/Subtype/Image/Name/$namnet" . | |||
204 | "/Width $iWidth /Height $iHeight /BitsPerComponent 8 " . | |||||
205 | ($altArrayObjNr ? "/Alternates $altArrayObjNr 0 R " : "") . | |||||
206 | "/Filter/DCTDecode/ColorSpace/DeviceRGB" | |||||
207 | . "/Length $iLangd >>stream\n$iStream\nendstream\nendobj\n"; | |||||
208 | 0 | 0 | close BILDFIL; | |||
209 | 0 | 0 | $PDF::Reuse::pos += syswrite $PDF::Reuse::UTFIL, $utrad; | |||
210 | 0 | 0 | if ($PDF::Reuse::runfil) | |||
211 | 0 | 0 | { $PDF::Reuse::log .= "Cid~$PDF::Reuse::checkId\n"; | |||
212 | 0 | 0 | $PDF::Reuse::log .= "Jpeg~$iFile~$iWidth~$iHeight\n"; | |||
213 | } | |||||
214 | 0 | 0 | $PDF::Reuse::objRef{$namnet} = $PDF::Reuse::objNr; | |||
215 | } | |||||
216 | 0 | 0 | undef $checkId; | |||
217 | } | |||||
218 | elsif ($iFormat == 1) | |||||
219 | 0 | 0 | { my $iBlob = $iData; | |||
220 | 0 | 0 | $iLangd = length($iBlob); | |||
221 | 0 | 0 | $PDF::Reuse::imageNr++; | |||
222 | 0 | 0 | $namnet = 'Ig' . $PDF::Reuse::imageNr; | |||
223 | 0 | 0 | $PDF::Reuse::objNr++; | |||
224 | 0 | 0 | $PDF::Reuse::objekt[$PDF::Reuse::objNr] = $PDF::Reuse::pos; | |||
225 | 0 | 0 | $utrad = "$PDF::Reuse::objNr 0 obj\n<</Type/XObject/Subtype/Image/Name/$namnet" . | |||
226 | "/Width $iWidth /Height $iHeight /BitsPerComponent 8 " . | |||||
227 | ($altArrayObjNr ? "/Alternates $altArrayObjNr 0 R " : "") . | |||||
228 | "/Filter/DCTDecode/ColorSpace/DeviceRGB" | |||||
229 | . "/Length $iLangd >>stream\n$iBlob\nendstream\nendobj\n"; | |||||
230 | 0 | 0 | $PDF::Reuse::pos += syswrite *PDF::Reuse::UTFIL, $utrad; | |||
231 | 0 | 0 | if ($PDF::Reuse::runfil) | |||
232 | 0 | 0 | { $PDF::Reuse::log .= "Jpeg~Blob~$iWidth~$iHeight\n"; | |||
233 | } | |||||
234 | 0 | 0 | $PDF::Reuse::objRef{$namnet} = $PDF::Reuse::objNr; | |||
235 | } | |||||
236 | 0 | 0 | if (! $PDF::Reuse::pos) | |||
237 | 0 | 0 | { errLog("No output file, you have to call prFile first"); | |||
238 | } | |||||
239 | 0 | 0 | return $namnet; | |||
240 | } | |||||
241 | ||||||
242 | sub Js { | |||||
243 | 0 | 0 | my $self = shift; | |||
244 | 0 | 0 | my $string_or_fileName = shift; | |||
245 | 0 | 0 | prJs($string_or_fileName); | |||
246 | } | |||||
247 | ||||||
248 | sub Link { | |||||
249 | 0 | 0 | my $self = shift; | |||
250 | 0 | 0 | my %params = @_; | |||
251 | 0 | 0 | prLink(%params); | |||
252 | } | |||||
253 | ||||||
254 | sub Log { | |||||
255 | 0 | 0 | my $self = shift; | |||
256 | 0 | 0 | my $string = shift; | |||
257 | 0 | 0 | prLog($string); | |||
258 | } | |||||
259 | ||||||
260 | sub LogDir { | |||||
261 | 0 | 0 | my $self = shift; | |||
262 | 0 | 0 | my $directory = shift; | |||
263 | 0 | 0 | prLogDir($directory); | |||
264 | } | |||||
265 | ||||||
266 | sub Mbox { | |||||
267 | 0 | 0 | my $self = shift; | |||
268 | 0 | 0 | my ($lowerLeftX, $lowerLeftY, $upperRightX, $upperRightY) = @_; | |||
269 | 0 | 0 | prMbox($lowerLeftX, $lowerLeftY, $upperRightX, $upperRightY); | |||
270 | } | |||||
271 | ||||||
272 | sub Page { | |||||
273 | 1 | 2 | my $self = shift; | |||
274 | 1 | 2 | my $noLog = shift; | |||
275 | 1 | 6 | prPage($noLog); | |||
276 | } | |||||
277 | ||||||
278 | sub SinglePage { | |||||
279 | 0 | 0 | my $self = shift; | |||
280 | 0 | 0 | my ($file, $pageNumber) = @_; | |||
281 | 0 | 0 | return prSinglePage($file, $pageNumber); | |||
282 | } | |||||
283 | ||||||
284 | sub StrWidth { | |||||
285 | 1 | 3 | my $self = shift; | |||
286 | 1 | 2 | my ($string, $font, $fontSize) = @_; | |||
287 | 1 | 7 | return prStrWidth($string, $font, $fontSize); | |||
288 | } | |||||
289 | ||||||
290 | sub Text { | |||||
291 | 1 | 3 | my $self = shift; | |||
292 | 1 | 2 | my ($x, $y, $string, $align, $rotation) = @_; | |||
293 | 1 | 8 | return prText($x, $y, $string, $align, $rotation); | |||
294 | } | |||||
295 | ||||||
296 | sub TTFont { | |||||
297 | 0 | my $self = shift; | ||||
298 | 0 | my $path = shift; | ||||
299 | 0 | return prTTFont($path); | ||||
300 | } | |||||
301 | ||||||
302 | sub Code128 { | |||||
303 | 0 | my $self = shift; | ||||
304 | 0 | my %opts = @_; | ||||
305 | 0 | PDF::Reuse::Barcode::Code128(%opts); | ||||
306 | } | |||||
307 | ||||||
308 | sub Code39 { | |||||
309 | 0 | my $self = shift; | ||||
310 | 0 | my %opts = @_; | ||||
311 | 0 | PDF::Reuse::Barcode::Code39(%opts); | ||||
312 | } | |||||
313 | ||||||
314 | sub COOP2of5 { | |||||
315 | 0 | my $self = shift; | ||||
316 | 0 | my %opts = @_; | ||||
317 | 0 | PDF::Reuse::Barcode::COOP2of5(%opts); | ||||
318 | } | |||||
319 | ||||||
320 | sub EAN13 { | |||||
321 | 0 | my $self = shift; | ||||
322 | 0 | my %opts = @_; | ||||
323 | 0 | PDF::Reuse::Barcode::EAN13(%opts); | ||||
324 | } | |||||
325 | ||||||
326 | sub EAN8 { | |||||
327 | 0 | my $self = shift; | ||||
328 | 0 | my %opts = @_; | ||||
329 | 0 | PDF::Reuse::Barcode::EAN8(%opts); | ||||
330 | } | |||||
331 | ||||||
332 | sub IATA2of5 { | |||||
333 | 0 | my $self = shift; | ||||
334 | 0 | my %opts = @_; | ||||
335 | 0 | PDF::Reuse::Barcode::IATA2of5(%opts); | ||||
336 | } | |||||
337 | ||||||
338 | sub Industrial2of5 { | |||||
339 | 0 | my $self = shift; | ||||
340 | 0 | my %opts = @_; | ||||
341 | 0 | PDF::Reuse::Barcode::Industrial2of5(%opts); | ||||
342 | } | |||||
343 | ||||||
344 | sub ITF { | |||||
345 | 0 | my $self = shift; | ||||
346 | 0 | my %opts = @_; | ||||
347 | 0 | PDF::Reuse::Barcode::ITF(%opts); | ||||
348 | } | |||||
349 | ||||||
350 | sub Matrix2of5 { | |||||
351 | 0 | my $self = shift; | ||||
352 | 0 | my %opts = @_; | ||||
353 | 0 | PDF::Reuse::Barcode::Matrix2of5(%opts); | ||||
354 | } | |||||
355 | ||||||
356 | sub NW7 { | |||||
357 | 0 | my $self = shift; | ||||
358 | 0 | my %opts = @_; | ||||
359 | 0 | PDF::Reuse::Barcode::NW7(%opts); | ||||
360 | } | |||||
361 | ||||||
362 | sub UPCA { | |||||
363 | 0 | my $self = shift; | ||||
364 | 0 | my %opts = @_; | ||||
365 | 0 | PDF::Reuse::Barcode::UPCA(%opts); | ||||
366 | } | |||||
367 | ||||||
368 | sub UPCE { | |||||
369 | 0 | my $self = shift; | ||||
370 | 0 | my %opts = @_; | ||||
371 | 0 | PDF::Reuse::Barcode::UPCE(%opts); | ||||
372 | } | |||||
373 | ||||||
374 | 1; |