<?php include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc'; $TOC = array(); $TOC_DEPRECATED = array(); $PARENTS = array(); include_once dirname(__FILE__) ."/toc/class.imagick.inc"; $setup = array ( 'home' => array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'zh', ), 'this' => array ( 0 => 'imagick.swirlimage.php', 1 => 'Imagick::swirlImage', 2 => 'Swirls the pixels about the center of the image', ), 'up' => array ( 0 => 'class.imagick.php', 1 => 'Imagick', ), 'prev' => array ( 0 => 'imagick.subimagematch.php', 1 => 'Imagick::subImageMatch', ), 'next' => array ( 0 => 'imagick.textureimage.php', 1 => 'Imagick::textureImage', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/imagick/imagick/swirlimage.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?> <div id="imagick.swirlimage" class="refentry"> <div class="refnamediv"> <h1 class="refname">Imagick::swirlImage</h1> <p class="verinfo">(PECL imagick 2, PECL imagick 3)</p><p class="refpurpose"><span class="refname">Imagick::swirlImage</span> — <span class="dc-title">Swirls the pixels about the center of the image</span></p> </div> <div class="refsect1 description" id="refsect1-imagick.swirlimage-description"> <h3 class="title">说明</h3> <div class="methodsynopsis dc-description"> <span class="methodname"><strong>Imagick::swirlImage</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$degrees</code></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div> <p class="para rdfs-comment"> Swirls the pixels about the center of the image, where degrees indicates the sweep of the arc through which each pixel is moved. You get a more dramatic effect as the degrees move from 1 to 360. </p> </div> <div class="refsect1 parameters" id="refsect1-imagick.swirlimage-parameters"> <h3 class="title">参数</h3> <p class="para"> <dl> <dt><code class="parameter">degrees</code></dt> <dd> <p class="para"> </p> </dd> </dl> </p> </div> <div class="refsect1 returnvalues" id="refsect1-imagick.swirlimage-returnvalues"> <h3 class="title">返回值</h3> <p class="para"> 成功时返回 <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>。 </p> </div> <div class="refsect1 errors" id="refsect1-imagick.swirlimage-errors"> <h3 class="title">错误/异常</h3> <p class="para"> 错误时抛出 ImagickException。 </p> </div> <div class="refsect1 examples" id="refsect1-imagick.swirlimage-examples"> <h3 class="title">示例</h3> <p class="para"> <div class="example" id="example-3105"> <p><strong>示例 #1 <span class="function"><strong>Imagick::swirlImage()</strong></span></strong></p> <div class="example-contents"> <div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB"><?php<br /></span><span style="color: #007700">function </span><span style="color: #0000BB">swirlImage</span><span style="color: #007700">(</span><span style="color: #0000BB">$imagePath</span><span style="color: #007700">, </span><span style="color: #0000BB">$swirl</span><span style="color: #007700">) {<br /> </span><span style="color: #0000BB">$imagick </span><span style="color: #007700">= new </span><span style="color: #0000BB">\Imagick</span><span style="color: #007700">(</span><span style="color: #0000BB">realpath</span><span style="color: #007700">(</span><span style="color: #0000BB">$imagePath</span><span style="color: #007700">));<br /> </span><span style="color: #0000BB">$imagick</span><span style="color: #007700">-></span><span style="color: #0000BB">swirlImage</span><span style="color: #007700">(</span><span style="color: #0000BB">$swirl</span><span style="color: #007700">);<br /> </span><span style="color: #0000BB">header</span><span style="color: #007700">(</span><span style="color: #DD0000">"Content-Type: image/jpg"</span><span style="color: #007700">);<br /> echo </span><span style="color: #0000BB">$imagick</span><span style="color: #007700">-></span><span style="color: #0000BB">getImageBlob</span><span style="color: #007700">();<br />}<br /><br /></span><span style="color: #0000BB">?></span></span></code></div> </div> </div> </p> </div> </div><?php manual_footer($setup); ?>