line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Font::TTF::Woff; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Font::TTF::WOFF - holds Web Open Font File (WOFF) data for the font |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 DESCRIPTION |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
This contains the WOFF packaging data. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 INSTANCE VARIABLES |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
This object supports the following instance variables (which, because they |
14
|
|
|
|
|
|
|
reflect the structure of the table, do not begin with a space): |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=over |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=item majorVersion |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=item minorVersion |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
The two version integers come directly from the WOFF font header. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=item metaData |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Contains a reference to Font::TTF::Woff::Meta structure, if the font has WOFF metadata. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=item privateData |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Contains a reference to a Font::TTF::Woff::Private structure, if the font has a WOFF private data block |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=back |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 METHODS |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |
37
|
|
|
|
|
|
|
|
38
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
43
|
|
39
|
1
|
|
|
1
|
|
3
|
use vars qw(@ISA %fields @field_info); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
93
|
|
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
require Font::TTF::Table; |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
@ISA = qw(Font::TTF::Table); |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
1; |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 AUTHOR |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Bob Hallissy. L. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 LICENSING |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Copyright (c) 1998-2014, SIL International (http://www.sil.org) |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
This module is released under the terms of the Artistic License 2.0. |
57
|
|
|
|
|
|
|
For details, see the full text of the license in the file LICENSE. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=cut |