diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2016-10-02 12:47:22 +0200 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2016-10-02 13:16:40 +0200 |
commit | d0f14a4429e36d8cb70d14067e79fd252eb4ee7a (patch) | |
tree | d7ad641bce7f6f82591614076546cc904b7339bf /ext/gd/php_gd.h | |
parent | 1c74398520bebdce6f0aceb3e3ace00ec965a171 (diff) | |
download | php-git-d0f14a4429e36d8cb70d14067e79fd252eb4ee7a.tar.gz |
Switch to libgd anti-aliased drawing API
Instead of rolling our own in the bundled libgd, we use libgd's anti-aliased
drawing API. This way imageantialias() is also available, when built against
a system libgd.
Diffstat (limited to 'ext/gd/php_gd.h')
-rw-r--r-- | ext/gd/php_gd.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/gd/php_gd.h b/ext/gd/php_gd.h index d2c4697322..0b35423f88 100644 --- a/ext/gd/php_gd.h +++ b/ext/gd/php_gd.h @@ -123,9 +123,7 @@ PHP_FUNCTION(imagerotate); PHP_FUNCTION(imageflip); -#ifdef HAVE_GD_BUNDLED PHP_FUNCTION(imageantialias); -#endif PHP_FUNCTION(imagecrop); PHP_FUNCTION(imagecropauto); |