diff options
author | Stanislav Malyshev <stas@php.net> | 2001-02-01 15:40:35 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2001-02-01 15:40:35 +0000 |
commit | bb6d3e60e864fef32f608bcd2b3f763547ebb2ab (patch) | |
tree | a811a283577d4daca6d35fb3b23b39b3288d9279 /ext/gd/php_gd.h | |
parent | 898baa8b54bc605b765f5f98a798344008824f0e (diff) | |
download | php-git-bb6d3e60e864fef32f608bcd2b3f763547ebb2ab.tar.gz |
Allow usage of GD contexts and not tempfiles in output functions
Diffstat (limited to 'ext/gd/php_gd.h')
-rw-r--r-- | ext/gd/php_gd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/php_gd.h b/ext/gd/php_gd.h index f9756c6318..75afd788ea 100644 --- a/ext/gd/php_gd.h +++ b/ext/gd/php_gd.h @@ -139,7 +139,7 @@ PHP_FUNCTION(image2wbmp); gdImagePtr _php_image_create_from_string ( zval **Data, char *tn, gdImagePtr (*ioctx_func_p)() ); static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImagePtr (*func_p)(), gdImagePtr (*ioctx_func_p)()); static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p)()); -static void _php_image_output_wbmp(gdImagePtr im, FILE *fp); +/* static void _php_image_output_wbmp(gdImagePtr im, FILE *fp); */ static int _php_image_type ( char data[8] ); static void _php_image_bw_convert( gdImagePtr im_org, int threshold, FILE *out ); static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type); |