diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2010-05-24 23:27:39 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2010-05-24 23:27:39 +0000 |
commit | 159369c68cfd942412521b27b54be270f0710f70 (patch) | |
tree | 9ff20510478a58972ba760f85062cb701f5be267 | |
parent | 29c99daa0f5d29d9bb646274c8c8e1d8b6fd1ec7 (diff) | |
download | php-git-159369c68cfd942412521b27b54be270f0710f70.tar.gz |
Let's have a sane error message here instead of some cryptic zlib error
-rw-r--r-- | ext/gd/libgd/gd_png.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/gd/libgd/gd_png.c b/ext/gd/libgd/gd_png.c index 52a087e787..1af49308c5 100644 --- a/ext/gd/libgd/gd_png.c +++ b/ext/gd/libgd/gd_png.c @@ -515,6 +515,10 @@ void gdImagePngCtxEx (gdImagePtr im, gdIOCtx * outfile, int level, int basefilte /* png_set_filter(png_ptr, 0, PNG_FILTER_NONE); */ /* 2.0.12: this is finally a parameter */ + if (level < 0 || level > 9) { + php_gd_error("gd-png error: compression level must be between 0 and 9"); + return; + } png_set_compression_level(png_ptr, level); if (basefilter >= 0) { png_set_filter(png_ptr, PNG_FILTER_TYPE_BASE, basefilter); |