mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Closes bug #23444. php_gd.dll was removed in PHP 4.3.2. Also, truecolor
functions require GD2, and GD was first bundled in PHP 4.3.0. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@126418 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
3324dc61f1
commit
9876c38c45
2 changed files with 14 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.30 $ -->
|
||||
<!-- $Revision: 1.31 $ -->
|
||||
<sect1 id="install.windows">
|
||||
<title>Installation on Windows systems</title>
|
||||
<para>
|
||||
|
@ -915,12 +915,15 @@ extension=php_bz2.dll
|
|||
<row>
|
||||
<entry>php_gd.dll</entry>
|
||||
<entry><link linkend="ref.image">GD</link> library image functions</entry>
|
||||
<entry>None</entry>
|
||||
<entry>
|
||||
Removed in PHP 4.3.2. Also note that truecolor functions are not
|
||||
available in GD1, instead, use <filename>php_gd2.dll</filename>.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>php_gd2.dll</entry>
|
||||
<entry><link linkend="ref.image">GD2</link> library image functions</entry>
|
||||
<entry>None</entry>
|
||||
<entry><link linkend="ref.image">GD</link> library image functions</entry>
|
||||
<entry>GD2</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>php_gettext.dll</entry>
|
||||
|
|
|
@ -1,14 +1,17 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<section id="image.installation">
|
||||
&reftitle.install;
|
||||
<para>
|
||||
To enable GD-support configure PHP
|
||||
<option role="configure">--with-gd[=DIR]</option>, where DIR is the GD base
|
||||
install directory. To use the recommended bundled version of the GD library
|
||||
configure <option role="configure">--with-gd</option>. In Windows you'll
|
||||
include <filename>php_gd2.dll</filename> as an extension in &php.ini;. There
|
||||
is also <filename>php_gd.dll</filename> for GD1 but it's not preferred.
|
||||
(which was first bundled in PHP 4.3.0), use the configure option
|
||||
<option role="configure">--with-gd</option>. In Windows, you'll include
|
||||
the GD2 DLL <filename>php_gd2.dll</filename> as an extension in &php.ini;.
|
||||
The GD1 DLL <filename>php_gd.dll</filename> was removed in PHP 4.3.2.
|
||||
Also note that the preferred truecolor image functions, such as
|
||||
<function>imagecreatetruecolor</function>, require GD2.
|
||||
</para>
|
||||
<para>
|
||||
Enhance the capabilities of GD to handle more image formats by specifying
|
||||
|
|
Loading…
Reference in a new issue