/usr/share/perl5/Font/TTF/Feat.pm is in libfont-ttf-perl 1.06-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Font::TTF::Feat;
=head1 NAME
Font::TTF::Feat - Font Features
=head1 DESCRIPTION
=head1 INSTANCE VARIABLES
=over 4
=item version
=item features
An array of hashes of the following form
=over 8
=item feature
feature id number
=item name
name index in name table
=item exclusive
exclusive flag
=item settings
hash of setting number against name string index
=back
=back
=head1 METHODS
=cut
use strict;
use vars qw(@ISA);
use Font::TTF::Utils;
require Font::TTF::Table;
@ISA = qw(Font::TTF::Table);
=head2 $t->read
Reads the features from the TTF file into memory
=cut
sub read
{
my ($self) = @_;
my ($featureCount, $features);
$self->SUPER::read_dat or return $self;
($self->{'version'}, $featureCount) = TTF_Unpack("vS", $self->{' dat'});
$features = [];
foreach (1 .. $featureCount) {
my ($feature, $nSettings, $settingTable, $featureFlags, $nameIndex)
= TTF_Unpack("SSLSS", substr($self->{' dat'}, $_ * 12, 12));
push @$features,
{
'feature' => $feature,
'name' => $nameIndex,
'exclusive' => (($featureFlags & 0x8000) != 0),
'settings' => { TTF_Unpack("S*", substr($self->{' dat'}, $settingTable, $nSettings * 4)) }
};
}
$self->{'features'} = $features;
delete $self->{' dat'}; # no longer needed, and may become obsolete
$self;
}
=head2 $t->out($fh)
Writes the features to a TTF file
=cut
sub out
{
my ($self, $fh) = @_;
my ($features, $numFeatures, $settings, $featuresData, $settingsData);
return $self->SUPER::out($fh) unless $self->{' read'};
$features = $self->{'features'};
$numFeatures = @$features;
foreach (@$features) {
$settings = $_->{'settings'};
$featuresData .= TTF_Pack("SSLSS",
$_->{'feature'},
scalar keys %$settings,
12 + 12 * $numFeatures + length $settingsData,
($_->{'exclusive'} ? 0x8000 : 0x0000),
$_->{'name'});
foreach (sort {$a <=> $b} keys %$settings) {
$settingsData .= TTF_Pack("SS", $_, $settings->{$_});
}
}
$fh->print(TTF_Pack("vSSL", $self->{'version'}, $numFeatures, 0, 0));
$fh->print($featuresData);
$fh->print($settingsData);
$self;
}
=head2 $t->minsize()
Returns the minimum size this table can be. If it is smaller than this, then the table
must be bad and should be deleted or whatever.
=cut
sub minsize
{
return 6;
}
=head2 $t->print($fh)
Prints a human-readable representation of the table
=cut
sub print
{
my ($self, $fh) = @_;
my ($names, $features, $settings);
$self->read;
$names = $self->{' PARENT'}->{'name'};
$names->read;
$fh = 'STDOUT' unless defined $fh;
$features = $self->{'features'};
foreach (@$features) {
$fh->printf("Feature %d, %s, name %d # '%s'\n",
$_->{'feature'},
($_->{'exclusive'} ? "exclusive" : "additive"),
$_->{'name'},
$names->{'strings'}[$_->{'name'}][1][0]{0});
$settings = $_->{'settings'};
foreach (sort { $a <=> $b } keys %$settings) {
$fh->printf("\tSetting %d, name %d # '%s'\n",
$_, $settings->{$_}, $names->{'strings'}[$settings->{$_}][1][0]{0});
}
}
$self;
}
sub settingName
{
my ($self, $feature, $setting) = @_;
$self->read;
my $names = $self->{' PARENT'}->{'name'};
$names->read;
my $features = $self->{'features'};
my ($featureEntry) = grep { $_->{'feature'} == $feature } @$features;
my $featureName = $names->{'strings'}[$featureEntry->{'name'}][1][0]{0};
my $settingName = $featureEntry->{'exclusive'}
? $names->{'strings'}[$featureEntry->{'settings'}->{$setting}][1][0]{0}
: $names->{'strings'}[$featureEntry->{'settings'}->{$setting & ~1}][1][0]{0}
. (($setting & 1) == 0 ? " On" : " Off");
($featureName, $settingName);
}
1;
=head1 BUGS
None known
=head1 AUTHOR
Jonathan Kew L<http://scripts.sil.org/FontUtils>.
=head1 LICENSING
Copyright (c) 1998-2016, SIL International (http://www.sil.org)
This module is released under the terms of the Artistic License 2.0.
For details, see the full text of the license in the file LICENSE.
=cut
|