Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 12220

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!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>Creates a new SWFText object</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="swftext.addutf8string.html">SWFText::addUTF8String</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="swftext.getascent.html">SWFText::getAscent</a></div>
 <div class="up"><a href="class.swftext.html">SWFText</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="swftext.construct" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SWFText::__construct</h1>
  <p class="verinfo">(PHP 5 &lt;= 5.3.0, PECL ming SVN)</p><p class="refpurpose"><span class="refname">SWFText::__construct</span> &mdash; <span class="dc-title">Creates a new SWFText object</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-swftext.construct-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
    <span class="methodname"><strong>SWFText::__construct</strong></span>
    ( <span class="methodparam">void</span>
   )</div>

  <div class="warning"><strong class="warning">Warning</strong><p class="simpara">This function is
<em class="emphasis">EXPERIMENTAL</em>. The behaviour of this function, its name, and
surrounding documentation may change without notice in a future release of PHP.
This function should be used at your own risk.
</p></div>
  <p class="para">
   Creates a new <a href="class.swftext.html" class="classname">SWFText</a> object, fresh for 
   manipulating.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-swftext.construct-examples">
  <h3 class="title">Examples</h3>
  <p class="para">
   This simple example will draw a big yellow &quot;PHP generates Flash with Ming&quot;
   text, on white background.
   <div class="example" id="example-3555">
    <p><strong>Example #1  <span class="function"><strong>swftext()</strong></span> example</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$f&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">SWFFont</span><span style="color: #007700">(</span><span style="color: #DD0000">"Techno.fdb"</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$t&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">SWFText</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">$t</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setFont</span><span style="color: #007700">(</span><span style="color: #0000BB">$f</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$t</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">moveTo</span><span style="color: #007700">(</span><span style="color: #0000BB">200</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">2400</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$t</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setColor</span><span style="color: #007700">(</span><span style="color: #0000BB">0xff</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">0xff</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$t</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setHeight</span><span style="color: #007700">(</span><span style="color: #0000BB">1200</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$t</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">addString</span><span style="color: #007700">(</span><span style="color: #DD0000">"PHP&nbsp;generates&nbsp;Flash&nbsp;with&nbsp;Ming!!"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$m&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">SWFMovie</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">$m</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">setDimension</span><span style="color: #007700">(</span><span style="color: #0000BB">5400</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">3600</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">$m</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">add</span><span style="color: #007700">(</span><span style="color: #0000BB">$t</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">header</span><span style="color: #007700">(</span><span style="color: #DD0000">'Content-type:&nbsp;application/x-shockwave-flash'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">$m</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">output</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
    </div>

   </div>
  </p>
 </div>

</div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="swftext.addutf8string.html">SWFText::addUTF8String</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="swftext.getascent.html">SWFText::getAscent</a></div>
 <div class="up"><a href="class.swftext.html">SWFText</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>