Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

font::ttf::post(3pm) [debian man page]

Font::TTF::Post(3pm)					User Contributed Perl Documentation				      Font::TTF::Post(3pm)

NAME
Font::TTF::Post - Holds the Postscript names for each glyph DESCRIPTION
Holds the postscript names for glyphs. Note that they are not held as an array, but as indexes into two lists. The first list is the standard Postscript name list defined by the TrueType standard. The second comes from the font directly. Looking up a glyph from a Postscript name or a name from a glyph number is achieved through methods rather than variable lookup. This class handles PostScript table types of 1, 2, 2.5 & 3, but not version 4. Support for version 2.5 is as per Apple spec rather than MS. The way to look up Postscript names or glyphs is: $pname = $f->{'post'}{'VAL'}[$gnum]; $gnum = $f->{'post'}{'STRINGS'}{$pname}; INSTANCE VARIABLES
Due to different systems having different limitations, there are various class variables available to control what post table types can be written. $Font::TTF::Post::no25 If set tells Font::TTF::Post::out to use table type 2 instead of 2.5 in case apps can't handle version 2.5. VAL Contains an array indexed by glyph number of Postscript names. This is used when writing out a font. STRINGS An associative array of Postscript names mapping to the highest glyph with that name. These may not be in sync with VAL. In addition there are the standard introductory variables defined in the standard: FormatType italicAngle underlinePosition underlineThickness isFixedPitch minMemType42 maxMemType42 minMemType1 maxMemType1 METHODS
$t->read Reads the Postscript table into memory from disk $t->out($fh) Writes out a new Postscript name table from memory or copies from disk $t->XML_element($context, $depth, $key, $val) Outputs the names as one block of XML BUGS
o No support for type 4 tables AUTHOR
Martin Hosken Martin_Hosken@sil.org. See Font::TTF::Font for copyright and licensing. perl v5.10.1 2009-01-21 Font::TTF::Post(3pm)

Check Out this Related Man Page

Font::TTF::PSNames(3)					User Contributed Perl Documentation				     Font::TTF::PSNames(3)

NAME
Font::TTF::PSNames - Utilities for Postscript glyph name processing SYNOPSIS
use Font::TTF::PSNames qw(parse lookup); $name = lookup($uni); $uni = parse($name); METHODS
lookup ( $usv [, $noAlt [, $noUni] ]) return the Adobe-recommended glyph name for a specific Unicode codepoint (integer). By default returns "uniXXXX" names rather than "afiiNNNNN" or "SFnnnnnn" names If $noAlt is true, "afii" and "SF" names are returned rather than "uniXXXX". if $noUni is true, returns undef if it would have to resort to "uniXXXX" or "uXXXXXX" style names. Essentially this represents a straight lookup in the Adobe-recommended list. parse ( $glyphname ) Parse an Adobe-conformant glyph name, generating a Unicode codepoint sequence equivalent to the glyph (or glyph components, should the name represent a ligature). In scalar context, returns a reference to an array of Unicodes (decimal). Array is empty if the glyph name is non- conformant. In list context, the first item returned is the same array reference as above. The second item is a reference to an array containing the extensions (if any) present on the glyph name. The '.' that precedes each extension is not included. AUTHOR
Martin Hosken Martin_Hosken@sil.org. See Font::TTF::Font for copyright and licensing. perl v5.16.3 2011-10-13 Font::TTF::PSNames(3)
Man Page

12 More Discussions You Might Find Interesting

1. Programming

Kornshell convdate

Hello, I'm currently doing some programming using the Kornshell environment. I have just been on a Unix course where our instructor gave us some coding examples. I am using one of these examples to solve a few problems. However, the code examples use a function called 'convdate' to convert a... (10 Replies)
Discussion started by: nezster
10 Replies

2. Shell Programming and Scripting

Need a Script(Urgent)

sdfggggggggggggggggggggg (7 Replies)
Discussion started by: udayben
7 Replies

3. Shell Programming and Scripting

it's urgent ! round number in perl scripting

my $number = 12.345673412 I need 3 digits after decimal or after dot(.) i mean , i need only 12.345 I used int(), ceil(), floor() but it gives me only 12 I need it. (10 Replies)
Discussion started by: pritish.sas
10 Replies

4. What is on Your Mind?

Post a Cool Music Video (Part V)

This thread is a continuation of Post a Cool Music Video (Part I). See How to use YouTube tags for instructions on how to post a video from YouTube. And I will start things off with.... Octavarium by Dream Theater xK3qylwd-M0 (9 Replies)
Discussion started by: Perderabo
9 Replies

5. What is on Your Mind?

UNIX/Linux Forums Post Of The Week 41, October, 2009

Which post should win this weeks UNIX/Linux post of the week nomination contest? Choose from the posts listed throughout the forum(s), and vote for your favorite post now. What is Topic Of The Week? Post of the Week is a contest that select posts which we would like the community to... (8 Replies)
Discussion started by: Linux Bot
8 Replies

6. What is on Your Mind?

UNIX/Linux Forums Post Of The Week 50, December, 2009

Which post should win this weeks UNIX/Linux post of the week nomination contest? Choose from the posts listed throughout the forum(s), and vote for your favorite post now. What is Topic Of The Week? Post of the Week is a contest that select posts which we would like the community to... (9 Replies)
Discussion started by: Linux Bot
9 Replies

7. What is on Your Mind?

UNIX/Linux Forums Post Of The Week 51, December, 2009

Which post should win this weeks UNIX/Linux post of the week nomination contest? Choose from the posts listed throughout the forum(s), and vote for your favorite post now. What is Topic Of The Week? Post of the Week is a contest that select posts which we would like the community to... (7 Replies)
Discussion started by: Linux Bot
7 Replies

8. Shell Programming and Scripting

shell script to sort entries in a file by date and time

Hello All, Need a shell script to sort entries in a file by date and time. Below are the entries in the file, i need to sort it first by the date and then time Note :- Date is in MM/DD/YY format and date comes as the 6th & time comes on 7th coloumns respectively. 150 pbnawldb001-b... (10 Replies)
Discussion started by: ajiwww
10 Replies

9. Shell Programming and Scripting

Formatting File Using Shell Script

Hi Team, We have a requirement where we need to format input file using shell script by meeting the below conditions. 1. 1. Ignore first 549 characters of that file. 2. 2. After that we need to make a file of 100 characters per line, repeat it until the 3rd ... (16 Replies)
Discussion started by: ataneja7
16 Replies

10. Programming

Best way to axe N bytes from the right?

say that i have strings that end in "text" foo.9.text, bar.10.text, baz.11.text and i want a C function to chop off the last four characters and replace each string with a '\0'; obviously with error-checking. Any ideas? TIA! (7 Replies)
Discussion started by: Gary Kline
7 Replies

11. Shell Programming and Scripting

Interpolation of two values in two different files

Dear All, I have two files which contain numerical data and strings. I want to create a new file that only revise numerical data from two files using interpolation. I guess AWK works, but I am new on AWK. FileA.txt . . index_2("0.1, 1, 2, 4, 8, 16, 32"); values("0.0330208, 0.0345557,... (17 Replies)
Discussion started by: jypark22
17 Replies

12. Shell Programming and Scripting

Script showing incorrect output

Hello scripting geeks, I am new to scripting and facing some issues in writing the logic of the script. Request your kind help here Actually when i run a command i get o/p as below o/p : 0x0000 0x0000 0x0000 0x0000 0x0000 0x0000 these are hex values i guess...now i want to... (15 Replies)
Discussion started by: kulvant29
15 Replies