/usr/lib/perl5/SWF/FontCharacter.pm is in libswf-perl 1:0.4.4-1.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 | # ====================================================================
# Copyright (c) 2006 by Peter Liscovius. All rights reserved.
# (c) 2009 A.Kleine
# This program is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
# ====================================================================
# $Author$
# $Id$
package SWF::FontCharacter;
use SWF();
use strict;
$SWF::FontCharacter::VERSION = $SWF::VERSION;
1;
__END__
=head1 NAME
SWF::FontCharacter - SWF Font Helper Class
=head1 SYNOPSIS
use SWF::FontCharacter;
$font = new SWF::Font('Arial.fdb');
$fontcharacter = $movie->addFont($font);
$fontcharacter = $movie->importFont('textField.swf', 'Arial337a');
=head1 DESCRIPTION
SWF::FontCharacter is a font helper class.
The objects are available thru SWF::Movie methods(),
so no constructor is present here.
=head1 METHODS
=over
=item $fontcharacter->addChars($string)
Adds characters from string.
=item $fontcharacter->addUTF8Chars($string)
Adds UTF8 characters from string and
will throw an error message like
"Character not found 12345" if any needed glyphs
are not present inside font definition.
=item $fontcharacter->addAllChars()
Adds all characters...
[ToDo: add some demo code here]
=back
=head1 AUTHOR
developers of ming
ming.sourceforge.net
=head1 SEE ALSO
SWF, SWF::Movie, SWF::Font, SWF::Text, SWF::TextField
=cut
|