diff options
author | Pierre Joye <pierre.php@gmail.com> | 2013-03-20 07:46:59 +0100 |
---|---|---|
committer | Pierre Joye <pierre.php@gmail.com> | 2013-03-20 07:46:59 +0100 |
commit | 22159fb7b7324c3d4bb9fe00d3d2ce575a15743d (patch) | |
tree | 45944188608e9074b8b70821f629a3b5fe4b6dc4 /ext/gd/php_gd.h | |
parent | cb76420fe04d6d5531d5f98c1c232696ed4d361c (diff) | |
download | php-git-22159fb7b7324c3d4bb9fe00d3d2ce575a15743d.tar.gz |
- add new interpolation method
. imagescale
. imageaffine
. replace imagerotate with new generic and optimized new implementations
. imagesetinterpolationmethod, to set the default interpolation to be
used with the new functions
. add imagepalettetotruecolor
Diffstat (limited to 'ext/gd/php_gd.h')
-rw-r--r-- | ext/gd/php_gd.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/gd/php_gd.h b/ext/gd/php_gd.h index 90ebd65268..044277c6c8 100644 --- a/ext/gd/php_gd.h +++ b/ext/gd/php_gd.h @@ -104,6 +104,7 @@ PHP_FUNCTION(imagefttext); PHP_FUNCTION(imagecreatetruecolor); PHP_FUNCTION(imagetruecolortopalette); +PHP_FUNCTION(imagepalettetotruecolor); PHP_FUNCTION(imagesetthickness); PHP_FUNCTION(imagefilledellipse); PHP_FUNCTION(imagefilledarc); @@ -127,6 +128,9 @@ PHP_FUNCTION(imageantialias); PHP_FUNCTION(imageflip); PHP_FUNCTION(imagecrop); PHP_FUNCTION(imagecropauto); +PHP_FUNCTION(imagescale); +PHP_FUNCTION(imageaffine); +PHP_FUNCTION(imagesetinterpolation); #endif PHP_FUNCTION(imagesetthickness); |