mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
bugfixing #26147
#thanks Jani git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@143940 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
e714b286a2
commit
7d14fa0d0f
7 changed files with 55 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- splitted from ./en/functions/image.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.imagepsbbox">
|
||||
<refnamediv>
|
||||
|
@ -53,6 +53,12 @@
|
|||
the angle is 0 degrees, you can expect the text to need 1 pixel
|
||||
more to every direction.
|
||||
</para>
|
||||
<note>
|
||||
<simpara>
|
||||
This function is only available if PHP is compiled using
|
||||
<option role="configure">--enable-t1lib</option>.
|
||||
</simpara>
|
||||
</note>
|
||||
<para>
|
||||
This function returns an array containing the following elements:
|
||||
<informaltable>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- splitted from ./en/functions/image.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.imagepsencodefont">
|
||||
<refnamediv>
|
||||
|
@ -29,6 +29,12 @@
|
|||
to point to the right encoding file and all fonts you load will
|
||||
automatically have the right encoding.
|
||||
</para>
|
||||
<note>
|
||||
<simpara>
|
||||
This function is only available if PHP is compiled using
|
||||
<option role="configure">--enable-t1lib</option>.
|
||||
</simpara>
|
||||
</note>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- splitted from ./en/functions/image.xml, last change in rev 1.7 -->
|
||||
<refentry id="function.imagepsextendfont">
|
||||
<refnamediv>
|
||||
|
@ -18,6 +18,12 @@
|
|||
the value of the <parameter>extend</parameter> parameter is less
|
||||
than one you will be condensing the font.
|
||||
</para>
|
||||
<note>
|
||||
<simpara>
|
||||
This function is only available if PHP is compiled using
|
||||
<option role="configure">--enable-t1lib</option>.
|
||||
</simpara>
|
||||
</note>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- splitted from ./en/functions/image.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.imagepsfreefont">
|
||||
<refnamediv>
|
||||
|
@ -14,7 +14,13 @@
|
|||
</methodsynopsis>
|
||||
<para>
|
||||
<function>imagepsfreefont</function> frees memory used by a PostScript Type 1 font.
|
||||
</para>
|
||||
</para>
|
||||
<note>
|
||||
<simpara>
|
||||
This function is only available if PHP is compiled using
|
||||
<option role="configure">--enable-t1lib</option>.
|
||||
</simpara>
|
||||
</note>
|
||||
<para>
|
||||
See also <function>imagepsloadfont</function>.
|
||||
</para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- splitted from ./en/functions/image.xml, last change in rev 1.7 -->
|
||||
<refentry id="function.imagepsloadfont">
|
||||
<refnamediv>
|
||||
|
@ -19,7 +19,9 @@
|
|||
wrong, which you cannot read directly, while the output type is image.
|
||||
</para>
|
||||
<para>
|
||||
<programlisting role="php">
|
||||
<example>
|
||||
<title><function>imagepsloadfont</function> example</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
header ("Content-type: image/jpeg");
|
||||
|
@ -33,8 +35,15 @@ imagejpeg ($im, "", 100); //for best quality...your mileage may vary
|
|||
imagedestroy ($im);
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
<note>
|
||||
<simpara>
|
||||
This function is only available if PHP is compiled using
|
||||
<option role="configure">--enable-t1lib</option>.
|
||||
</simpara>
|
||||
</note>
|
||||
<para>
|
||||
See also <function>imagepsfreefont</function>.
|
||||
</para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- splitted from ./en/functions/image.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.imagepsslantfont">
|
||||
<refnamediv>
|
||||
|
@ -18,6 +18,12 @@
|
|||
parameter with a slant of the value of the
|
||||
<parameter>slant</parameter> parameter.
|
||||
</para>
|
||||
<note>
|
||||
<simpara>
|
||||
This function is only available if PHP is compiled using
|
||||
<option role="configure">--enable-t1lib</option>.
|
||||
</simpara>
|
||||
</note>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.5 $ -->
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<!-- splitted from ./en/functions/image.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.imagepstext">
|
||||
<refnamediv>
|
||||
|
@ -83,6 +83,12 @@
|
|||
<parameter>tightness</parameter>, <parameter>angle</parameter>
|
||||
and <parameter>antialias_steps</parameter> are optional.
|
||||
</para>
|
||||
<note>
|
||||
<simpara>
|
||||
This function is only available if PHP is compiled using
|
||||
<option role="configure">--enable-t1lib</option>.
|
||||
</simpara>
|
||||
</note>
|
||||
<para>
|
||||
This function returns an array containing the following elements:
|
||||
<informaltable>
|
||||
|
|
Loading…
Reference in a new issue