mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 05:26:57 +08:00
116 lines
3.9 KiB
HTML
116 lines
3.9 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<title>Gets geometry of a string</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.ps-string-geometry" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">ps_string_geometry</h1>
|
|
<p class="verinfo">(PECL ps >= 1.2.0)</p><p class="refpurpose"><span class="refname">ps_string_geometry</span> — <span class="dc-title">Gets geometry of a string</span></p>
|
|
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.ps-string-geometry-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>ps_string_geometry</strong></span>
|
|
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$psdoc</code></span>
|
|
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$text</code></span>
|
|
[, <span class="methodparam"><span class="type">int</span> <code class="parameter">$fontid</code><span class="initializer"> = 0</span></span>
|
|
[, <span class="methodparam"><span class="type">float</span> <code class="parameter">$size</code><span class="initializer"> = 0.0</span></span>
|
|
]] ) : <span class="type">array</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
This function is similar to <span class="function"><a href="ps_stringwidth.html" class="function">ps_stringwidth()</a></span> but returns
|
|
an array of dimensions containing the width, ascender, and descender
|
|
of the text.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.ps-string-geometry-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">psdoc</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
Resource identifier of the postscript file
|
|
as returned by <span class="function"><a href="ps_new.html" class="function">ps_new()</a></span>.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">text</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The text for which the geometry is to be calculated.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">fontid</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The identifier of the font to be used. If not font is specified
|
|
the current font will be used.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">size</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
The size of the font. If no size is specified the current size
|
|
is used.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.ps-string-geometry-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
An array of the dimensions of a string. The element 'width' contains the
|
|
width of the string as returned by <span class="function"><a href="ps_stringwidth.html" class="function">ps_stringwidth()</a></span>. The
|
|
element 'descender' contains the maximum descender and 'ascender' the
|
|
maximum ascender of the string.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.ps-string-geometry-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="ps_continue_text.html" class="function" rel="rdfs-seeAlso">ps_continue_text()</a> - Continue text in next line</span></li>
|
|
<li class="member"><span class="function"><a href="ps_stringwidth.html" class="function" rel="rdfs-seeAlso">ps_stringwidth()</a> - Gets width of a string</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
</div></div></div></body></html> |