File: 042_links

package info (click to toggle)
libpdf-builder-perl 3.028-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,188 kB
  • sloc: perl: 109,309; makefile: 10
file content (466 lines) | stat: -rw-r--r-- 14,054 bytes parent folder | download
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
#  Note: this is not an exhaustive list, just something to orient you.
use strict;
use warnings;
use PDF::Builder;

# program settings
my $border = 1;  # line width of click rectangle, 0 for none

my $b_red   = 0; # click rectangle border color (here medium green)
my $b_green = 0.5;
my $b_blue  = 0;

my $normal_text_color = 'black';
my $link_text_color   = 'blue';

my $font_size = 20; # 20pt text
my $local_movie = ""; # a local movie file such as .avi

# ===========================================
my $PDFname = $0;
   $PDFname =~ s/\..*$//;  # remove any existing extension
   $PDFname .= '.pdf';     # add new extension

my $pdf = PDF::Builder->new('compress' => 'none');
# ===================== Page 1: goto browser ==================================
my $page = $pdf->page();
my $text = $page->text();
my $font = $pdf->corefont('Times-Roman');
$text->font($font, $font_size);
$text->fillcolor($normal_text_color);

my $x = 100;
my $y = 700;
$text->translate($x, $y);
$text->text("Page 1. Go to a web page in a browser.");

# ---------- go to a URL in a browser
$x = 100;
$y = 600;

print "1A ann->uri to google\n";
$text->translate($x, $y);
$text->text("Click ");
$x += $text->advancewidth("Click ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("here");
my $target_width = $text->advancewidth("here");

my $ann = $page->annotation();
# method 'url' is still usable
#
# note that instead of using options in the method, you could use
#  $ann->rect() etc. to set the options BEFORE invoking uri().
#  it's a stylistic choice.
$ann->uri("https://www.google.com",
          'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		               # clickable area
	  'border' => [0, 0, $border],    # show border
	  'color' => [$b_red, $b_green, $b_blue], # border color
	);

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" to go to Google.");

# ---------- go to a specific location in a browser
$x = 100;
$y = 500;

print "1B ann->url to CTS #ND\n";
$text->translate($x, $y);
$text->text("Go to ");
$x += $text->advancewidth("Go to ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("a specific point");
$target_width = $text->advancewidth("a specific point");

$ann = $page->annotation();
# method 'url' is still usable
$ann->url("https://www.catskilltech.com/#Catskills",
	  'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		                # clickable area
	  'border' => [0, 0, $border],    # show border
	  'color' => [$b_red, $b_green, $b_blue], # border color
	 );

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" on a website.");

# ---------- reminder to user
$x = 50;
$y = 300;
$text->translate($x, $y);
$text->text("In these examples the link text is explicitly colored blue and the");
$text->translate($x, $y-25);
$text->text("link box is outlined in green. These may be changed in the code.");

# ===================== Page 2: goto page in this PDF =========================
# ---------- go to a page within THIS document
$page = $pdf->page();  # page 2
$text = $page->text();
$text->font($font, $font_size);

$x = 100;
$y = 700;
$text->translate($x, $y);
$text->text("Page 2. Go to a point in this document (on Page 1).");

$x = 100;
$y = 600;

$text->translate($x, $y);
$text->text("Click ");
$x += $text->advancewidth("Click ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("here");
$target_width = $text->advancewidth("here");

$ann = $page->annotation();
my $tgt_page = $pdf->openpage(1);  # target page 1
# method 'link' is still usable
print "2A ann->link with opened page 1, default fit\n";
$ann->link($tgt_page,
	   'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		                  # clickable area
	   'border' => [0, 0, $border],    # show border
	   'color' => [$b_red, $b_green, $b_blue], # border color
	  );

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" to go to Page 1.");

# ---------------------
# same, except position and zoom
$x = 100;
$y = 500;

$text->translate($x, $y);
$text->text("Click ");
$x += $text->advancewidth("Click ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("here");
$target_width = $text->advancewidth("here");

$ann = $page->annotation();
$tgt_page = $pdf->openpage(1);  # target page 1
# method 'link' is still usable
print "2B ann->goto with page 1, fit=xyz\n";
$ann->goto($tgt_page,
	   'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		                 # clickable area
	   'border' => [0, 0, $border],    # show border
	   'color' => [$b_red, $b_green, $b_blue], # border color
           'xyz' => [ 200,550, 1.5 ],  # new position, zoom factor 150%
	  );

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" to go to Page 1 positioned/zoomed.");

# ---------------------
# go to a page in this document, using Named Destination

$x = 100;
$y = 400;
$text->translate($x, $y);
$text->text("As above, except using Named Destinations.");
# these ND's are also usable directly from the command line (depending on
# the OS and PDF Reader used)

$x = 100;
$y = 300;

$text->translate($x, $y);
$text->text("Click ");
$x += $text->advancewidth("Click ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("here");
$target_width = $text->advancewidth("here");

$ann = $page->annotation();
# method 'link' is still usable
print "2C ann->link with ND foo, no fit\n";
$ann->link('foo', # Named Destination defined on page 4
	   'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		                  # clickable area
	   'border' => [0, 0, $border],    # show border
	   'color' => [$b_red, $b_green, $b_blue], # border color
	  );

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" to go to Page 4.");

# ---------------------
$x = 100;
$y = 200;

$text->translate($x, $y);
$text->text("Click ");
$x += $text->advancewidth("Click ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("here");
$target_width = $text->advancewidth("here");

$ann = $page->annotation();
# method 'link' is still usable
print "2D ann->goto with ND bar, no fit\n";
$ann->goto('bar', # Named Destination defined on page 4
	   'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		                  # clickable area
	   'border' => [0, 0, $border],    # show border
	   'color' => [$b_red, $b_green, $b_blue], # border color
	  );

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" to go to Page 4, positioned and zoomed in.");

# ===================== Page 3: goto page in another PDF ======================
# ---------- go to a page in ANOTHER document
$page = $pdf->page();  # page 3
$text = $page->text();
$text->font($font, $font_size);

$x = 100;
$y = 700;
$text->translate($x, $y);
$text->text("Page 3. Go to a point in another PDF document (on Page 1).");

# -------------------
$x = 100;
$y = 600;

$text->translate($x, $y);
$text->text("Click ");
$x += $text->advancewidth("Click ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("here");
$target_width = $text->advancewidth("here");

$ann = $page->annotation();
# methods 'pdfile' and 'pdf_file' are still usable
print "3A ann->pdf with page 1, default fit\n";
$ann->pdf("resources/040_annotation.pdf",
          1, # page number
	  'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		               # clickable area
	  'border' => [0, 0, $border],    # show border
	  'color' => [$b_red, $b_green, $b_blue], # border color
	 );

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" to go to Page 1 of another PDF document.");

# -------------------
# same, except position and zoom
$x = 100;
$y = 500;

$text->translate($x, $y);
$text->text("Click ");
$x += $text->advancewidth("Click ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("here");
$target_width = $text->advancewidth("here");

$ann = $page->annotation();
# methods 'pdfile' and 'pdf_file' are still usable
print "3B ann->pdf_file with page 1 in 040, fitr\n";
$ann->pdf_file("resources/040_annotation.pdf",
          1, # page number
	  'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		                 # clickable area
	  'border' => [0, 0, $border],    # show border
	  'color' => [$b_red, $b_green, $b_blue], # border color
          'fitr' => [0,0, 100,250], # new viewport
	 );

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" to go to Page 1 of another PDF document,");
$text->translate(100,$y-20);
$text->text(" windowed.");

# -------------------
$x = 100;
$y = 400;
$text->translate($x, $y);
$text->text("As above, except using Named Destinations.");
# ND's 'foo' and 'bar' are defined in 040_annotation and resulting PDF
# these ND's are also usable directly from the command line (depending on
# the OS and PDF Reader used)

$x = 100;
$y = 300;
$text->translate($x, $y);
$text->text("Click ");
$x += $text->advancewidth("Click ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("here");
$target_width = $text->advancewidth("here");

$ann = $page->annotation();
print "3C ann->pdfile with ND foo in 040, no fit\n";
$ann->pdfile("resources/040_annotation.pdf",
          'foo',
	  'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		                 # clickable area
	  'border' => [0, 0, $border],    # show border
	  'color' => [$b_red, $b_green, $b_blue], # border color
	 );

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" to go to full Page 2 of another PDF document.");

# -------------------
$x = 100;
$y = 200;
$text->translate($x, $y);
$text->text("Click ");
$x += $text->advancewidth("Click ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("here");
$target_width = $text->advancewidth("here");

$ann = $page->annotation();
print "3D ann->pdf with ND bar in 040, fit xyz\n";
$ann->pdf("resources/040_annotation.pdf",
          'bar',
	  'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		                 # clickable area
	  'border' => [0, 0, $border],    # show border
	  'color' => [$b_red, $b_green, $b_blue], # border color
          'xyz' => [ 100,300, 1.5 ],
	 );

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" to find Nemo on Page 2 of another PDF document.");

# ===================== Page 4: launch local applications =====================
# ---------- launch (default OS action) another file
$page = $pdf->page();  # page 4
$text = $page->text();
$text->font($font, $font_size);

# add a couple of externally visible named destinations
# 'foo' is showing entire page 4
print "4A foo ND defined\n";
my $dest = PDF::Builder::NamedDestination->new($pdf);
$dest->goto($page, 'xyz'=>[undef, undef, undef]);
$pdf->named_destination('Dests', 'foo', $dest);
# 'bar' is zoomed in on page 4
print "4B bar ND defined\n";
$dest = PDF::Builder::NamedDestination->new($pdf);
$dest->goto($page, 'xyz'=>[50,700, 1.5]);
$pdf->named_destination('Dests', 'bar', $dest);

$x = 100;
$y = 700;
$text->translate($x, $y);
$text->text("Page 4. Launch (usually a \"default\" action) a file.");
# on Windows, default for .txt is usually to open it in Notepad,
#             default for .html is usually to open it in a browser

$x = 100;
$y = 600;

$text->translate($x, $y);
$text->text("Click ");
$x += $text->advancewidth("Click ");

# x,y should be at LL corner of "here" (on baseline)
$text->fillcolor($link_text_color);
$text->text("here");
$target_width = $text->advancewidth("here");

print "4C launch sample.txt\n";
$ann = $page->annotation();
# method 'file' is still usable
$ann->launch("resources/sample.txt",
	     'rect' => [$x-1, $y-5, $x+1+$target_width, $y-5+1+$font_size],
		                  # clickable area
	     'border' => [0, 0, $border],    # show border
	     'color' => [$b_red, $b_green, $b_blue], # border color
	    );

# restore color and do rest of line
$text->fillcolor($normal_text_color);
$text->text(" to \"launch\" a .txt file.");

# ----------------------
$x = 100;
$y = 500;

print "4D file sample.txt\n";
$text->translate($x, $y);

# x,y should be at LL corner of full text (on baseline)
$text->fillcolor('purple');
my $line_of_text = "Whole line is link with fancy border";
$text->text($line_of_text);
$target_width = $text->advancewidth($line_of_text);

$ann = $page->annotation();
# method 'file' is still usable
$ann->launch("resources/sample.txt",
	     'rect' => [$x-4, $y-7, $x+5+$target_width, $y-7+6+$font_size],
		                # clickable area
	     'border' => [0, 0, 3, [5,5]],    # show border (thick, dashed)
	     'color' => [1, 1, 0],            # yellow border color
	    );

# restore color 
$text->fillcolor($normal_text_color);

# ----------------------
if ($local_movie ne '' && -r $local_movie) {
  $x = 100;
  $y = 400;

  $text->translate($x, $y);
  $text->text("Double-click in box to play your movie...");

  my $movie_title = $local_movie;
  $movie_title =~ s#^.*/##;
  $movie_title =~ s#\.[^.]+$##;

  $ann->movie($local_movie, 'Movie',
      'rect' => [100,150, 400,300], # both click rectangle AND display area
      'text' => $movie_title,  # not sure where this is supposed to go!
      'border' => [0, 0, 2, [1,1]],
      'color' => [0, 1, 0]  # dashed bright green border
    );
}
 
# ----------------------
# ->text: done in 040_annotation
# ->file_attachment: done in 041_annot_fileattach
# ----------------------
$pdf->saveas($PDFname);