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
7 weeks 6 days ago
8 weeks 5 days ago
15 weeks 3 days ago
16 weeks 5 hours ago
17 weeks 3 days ago
20 weeks 2 days ago
24 weeks 6 days ago
29 weeks 5 days ago
35 weeks 3 days ago
42 weeks 2 days ago