mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
More documentation
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@286673 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
db7c1260fe
commit
a88d11f4d5
2 changed files with 21 additions and 2 deletions
|
@ -14,7 +14,7 @@
|
|||
<methodparam><type>float</type><parameter>sigma</parameter></methodparam>
|
||||
<methodparam choice="opt"><type>int</type><parameter>channel</parameter><initializer>Imagick::CHANNEL_ALL</initializer></methodparam>
|
||||
</methodsynopsis>
|
||||
&warn.undocumented.func;
|
||||
|
||||
<para>
|
||||
Adaptively sharpen the image by sharpening more intensely
|
||||
near image edges and less intensely far from edges. &imagick.method.available.0x629;
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
<type>int</type><methodname>Imagick::getImageLength</methodname>
|
||||
<void/>
|
||||
</methodsynopsis>
|
||||
&warn.undocumented.func;
|
||||
<para>
|
||||
Returns the image length in bytes
|
||||
</para>
|
||||
|
@ -25,6 +24,26 @@
|
|||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="examples">
|
||||
&reftitle.examples;
|
||||
<para>
|
||||
<example>
|
||||
<title>Using <function>Imagick::getImageLength</function>:</title>
|
||||
<para>
|
||||
Getting image length in bytes
|
||||
</para>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
$image = new Imagick('test.jpg');
|
||||
echo $image->getImageLength() . ' bytes';
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
|
|
Loading…
Reference in a new issue