Reputation: 73808
I get poor image quality when trying to generate image using PHP GD. Here is the code http://paste2.org/p/1220178 I use it to convert a bunch of files into a merged/thumb images file.
Upvotes: 0
Views: 330
Reputation: 449395
Use imagecopyresampled() instead of imagecopyresized().
imagecopyresampled()
imagecopyresized()
Upvotes: 3