File: SWF%3A%3AFont.html

package info (click to toggle)
ming 1%3A0.4.3-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 27,236 kB
  • ctags: 11,055
  • sloc: ansic: 55,058; sh: 9,111; cpp: 3,752; yacc: 2,808; makefile: 2,155; python: 1,864; perl: 1,472; php: 678; tcl: 13
file content (124 lines) | stat: -rw-r--r-- 3,303 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>SWF::Font - SWF Font class</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:feedback@suse.de" />
</head>

<body style="background-color: white">


<!-- INDEX BEGIN -->
<div name="index">
<p><a name="__index__"></a></p>

<ul>

	<li><a href="#name">NAME</a></li>
	<li><a href="#synopsis">SYNOPSIS</a></li>
	<li><a href="#description">DESCRIPTION</a></li>
	<li><a href="#notes">NOTES</a></li>
	<li><a href="#methods">METHODS</a></li>
	<li><a href="#author">AUTHOR</a></li>
	<li><a href="#see_also">SEE ALSO</a></li>
</ul>

<hr name="index" />
</div>
<!-- INDEX END -->

<p>
</p>
<h1><a name="name">NAME</a></h1>
<p>SWF::Font - SWF Font class</p>
<p>
</p>
<hr />
<h1><a name="synopsis">SYNOPSIS</a></h1>
<pre>
        use SWF::Font;
        $font = new SWF::Font();</pre>
<p>
</p>
<hr />
<h1><a name="description">DESCRIPTION</a></h1>
<p>Font object for later usage in Text and TextField objects.</p>
<p>
</p>
<hr />
<h1><a name="notes">NOTES</a></h1>
<p>Ming 0.3's old getShape($font, $code) has been removed from interface.
For getting details of glyph information you could draw a character 
into a shape and call <code>dumpOutline()</code> method, just like</p>
<pre>
        $sh=new SWF::Shape();
        $sh-&gt;drawGlyph($font, $char_nr);
        print $sh-&gt;dumpOutline();</pre>
<p>
</p>
<hr />
<h1><a name="methods">METHODS</a></h1>
<dl>
<dt><strong><a name="font" class="item">new SWF::Font($filename)</a></strong>

<dd>
<p>Creates a Font object. $filename selects either True-Type Font '(ttf')
file or Font Definition Block ('fdb') file as written by makefdb tool.</p>
</dd>
</li>
<dt><strong><a name="getstringwidth" class="item">$font-&gt;<code>getStringWidth($string)</code></a></strong>

<dt><strong><a name="getutf8stringwidth" class="item">$font-&gt;getUTF8StringWidth($UTF8string)</a></strong>

<dd>
<p>Returns width of given string in pixels.</p>
</dd>
</li>
<dt><strong><a name="getascent" class="item">$font-&gt;<code>getAscent()</code></a></strong>

<dd>
<p>Returns the ascent of the current font, or 0 if not available.</p>
</dd>
</li>
<dt><strong><a name="getdescent" class="item">$font-&gt;<code>getDescent()</code></a></strong>

<dd>
<p>Returns the descent of the current font, or 0 if not available.</p>
</dd>
</li>
<dt><strong><a name="getleading" class="item">$font-&gt;<code>getLeading()</code></a></strong>

<dd>
<p>Returns the leading of the current font, or 0 if not available.</p>
</dd>
</li>
<dt><strong><a name="getname" class="item">$font-&gt;<code>getName()</code></a></strong>

<dd>
<p>Returns the name of the current font, do not confuse with font filename.</p>
</dd>
</li>
<dt><strong><a name="getglyphcount" class="item">$font-&gt;<code>getGlyphCount()</code></a></strong>

<dd>
<p>Returns the glyph count of the current font.</p>
</dd>
</li>
</dl>
<p>
</p>
<hr />
<h1><a name="author">AUTHOR</a></h1>
<p>developers of ming
ming.sourceforge.net</p>
<p>
</p>
<hr />
<h1><a name="see_also">SEE ALSO</a></h1>
<p>SWF, SWF::BrowserFont, SWF::Text, SWF::TextField, SWF::Shape, ISO 10646 (Unicode)</p>

</body>

</html>