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
8 weeks 3 days ago
9 weeks 2 days ago
16 weeks 13 hours ago
16 weeks 3 days ago
18 weeks 54 min ago
20 weeks 6 days ago
25 weeks 2 days ago
30 weeks 2 days ago
35 weeks 6 days ago
42 weeks 6 days ago