mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fix indentation
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@76694 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
ce40eaca97
commit
49dde53d97
1 changed files with 25 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.87 $ -->
|
||||
<!-- $Revision: 1.88 $ -->
|
||||
<reference id="ref.image">
|
||||
<title>Image functions</title>
|
||||
<titleabbrev>Image</titleabbrev>
|
||||
|
@ -574,13 +574,15 @@ THUMBNAIL.Thumbnail.Height: 1
|
|||
<listitem><simpara><literal>IMG_ARC_NOFILL</literal></simpara></listitem>
|
||||
<listitem><simpara><literal>IMG_ARC_EDGED</literal></simpara></listitem>
|
||||
</orderedlist>
|
||||
<literal>IMG_ARC_PIE</literal> and <literal>IMG_ARC_CHORD</literal> are mutually exclusive; <literal>IMG_ARC_CHORD</literal> just
|
||||
<literal>IMG_ARC_PIE</literal> and <literal>IMG_ARC_CHORD</literal> are
|
||||
mutually exclusive; <literal>IMG_ARC_CHORD</literal> just
|
||||
connects the starting and ending angles with a straight line, while
|
||||
<literal>IMG_ARC_PIE</literal> produces a rounded edge. <literal>IMG_ARC_NOFILL</literal> indicates that the arc
|
||||
or chord should be outlined, not filled. <literal>IMG_ARC_EDGED</literal>, used together with
|
||||
<literal>IMG_ARC_NOFILL</literal>, indicates that the beginning and ending angles should be
|
||||
connected to the center - this is a good way to outline (rather than fill)
|
||||
a 'pie slice'.
|
||||
<literal>IMG_ARC_PIE</literal> produces a rounded edge.
|
||||
<literal>IMG_ARC_NOFILL</literal> indicates that the arc
|
||||
or chord should be outlined, not filled. <literal>IMG_ARC_EDGED</literal>,
|
||||
used together with <literal>IMG_ARC_NOFILL</literal>, indicates that the
|
||||
beginning and ending angles should be connected to the center - this is a
|
||||
good way to outline (rather than fill) a 'pie slice'.
|
||||
</para>
|
||||
<note><para>This function was added in PHP 4.0.6 and requires GD 2.0.1</para></note>
|
||||
</refsect1>
|
||||
|
@ -1393,7 +1395,8 @@ ImagePng ($im);
|
|||
representing a black image of size <parameter>x_size</parameter>
|
||||
by <parameter>y_size</parameter>.
|
||||
</para>
|
||||
<note><para>This function was added in PHP 4.0.6 and requires GD 2.0.1 or later</para></note> </refsect1>
|
||||
<note><para>This function was added in PHP 4.0.6 and requires GD 2.0.1 or later</para></note>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.imagetruecolortopalette">
|
||||
|
@ -2834,9 +2837,12 @@ ImageDestroy ($im);
|
|||
colors <literal>IMG_COLOR_BRUSHED</literal> or <literal>IMG_COLOR_STYLEDBRUSHED</literal>.
|
||||
</para>
|
||||
<note>
|
||||
<para>You need not take special action when you are finished with a brush, but if you
|
||||
destroy the brush image, you must not use the <literal>IMG_COLOR_BRUSHED</literal> or <literal>IMG_COLOR_STYLEDBRUSHED</literal>
|
||||
colors until you have set a new brush image!</para>
|
||||
<para>
|
||||
You need not take special action when you are finished with a brush, but if you
|
||||
destroy the brush image, you must not use the <literal>IMG_COLOR_BRUSHED</literal> or
|
||||
<literal>IMG_COLOR_STYLEDBRUSHED</literal>
|
||||
colors until you have set a new brush image!
|
||||
</para>
|
||||
</note>
|
||||
<note><para>This function was added in PHP 4.0.6</para></note>
|
||||
</refsect1>
|
||||
|
@ -2929,9 +2935,11 @@ ImageDestroy ($im);
|
|||
of the underlying area to shine through can be created.
|
||||
</para>
|
||||
<note>
|
||||
<para>You need not take special action when you are finished with a tile, but if you
|
||||
destroy the tile image, you must not use the <literal>IMG_COLOR_TILED</literal> color until you have
|
||||
set a new tile image!</para>
|
||||
<para>
|
||||
You need not take special action when you are finished with a tile, but if you
|
||||
destroy the tile image, you must not use the <literal>IMG_COLOR_TILED</literal>
|
||||
color until you have set a new tile image!
|
||||
</para>
|
||||
</note>
|
||||
<note><para>This function was added in PHP 4.0.6</para></note>
|
||||
</refsect1>
|
||||
|
@ -3343,8 +3351,9 @@ ImageDestroy ($im);
|
|||
<para>
|
||||
This function returns a bit-field corresponding to the image
|
||||
formats supported by the version of GD linked into PHP. The
|
||||
following bits are returned, <literal>IMG_GIF</literal> | <literal>IMG_JPG</literal> | <literal>IMG_PNG</literal> |
|
||||
<literal>IMG_WBMP</literal>. To check for PNG support, for example, do this:
|
||||
following bits are returned, <literal>IMG_GIF</literal> | <literal>IMG_JPG</literal>
|
||||
| <literal>IMG_PNG</literal> | <literal>IMG_WBMP</literal>.
|
||||
To check for PNG support, for example, do this:
|
||||
<example>
|
||||
<title>ImageTypes</title>
|
||||
<programlisting role="php">
|
||||
|
|
Loading…
Reference in a new issue