ID: 49882
Updated by: [email protected]
Reported By: woody dot gilk at kohanaphp dot com
-Status: Open
+Status: Assigned
Bug Type: GD related
Operating System: Mac OSX 10.5
PHP Version: 5.3.0
-Assigned To:
+Assigned To: pajoye
New Comment:
Quick note: It is not due to the bundled GD usages but the new feature
in the configure script on php 5.3. This feature enables the bundled new
functions even when the extension is built against the system library.
imagelayereffect was forgotten.
Previous Comments:
------------------------------------------------------------------------
[2009-10-15 00:12:55] woody dot gilk at kohanaphp dot com
Description:
------------
Using shared GD with PHP 5.3.0 should work the same as using --with-
gd=php. However, this is not true.
Reproduce code:
---------------
~> php -r 'var_dump(PHP_VERSION);'
string(5) "5.3.0"
~> php -r 'var_dump(function_exists("imagerotate"));'
bool(true)
~> php -r 'var_dump(function_exists("imagelayereffect"));'
bool(false)
Expected result:
----------------
I expected the last command to show "bool(true)".
Actual result:
--------------
It shows "bool(false)".
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=49882&edit=1