If you upgrade from php4 to php5 you'll see the following error when you're trying to save png files.
gd-png: fatal libpng error: zlib error
The thing is that in php5, the quality range changes for imagePNG from 0-99 to 0-9. therefore you need to change your code to relect this, e.g.
imagepng('','', 9);
Recent comments